Added missing require for is-var-name

pull/3316/head
Stefan 2018-02-03 12:33:33 +01:00
parent a03422b094
commit b292e137ed
1 changed files with 1 additions and 0 deletions

View File

@ -3,6 +3,7 @@ var apiLogger = log4js.getLogger("API");
var clientLogger = log4js.getLogger("client");
var formidable = require('formidable');
var apiHandler = require('../../handler/APIHandler');
var isVarName = require('is-var-name');
//This is for making an api call, collecting all post information and passing it to the apiHandler
var apiCaller = function(req, res, fields) {