diff --git a/src/Tools.js b/src/Tools.js index 253254c..da0d34a 100644 --- a/src/Tools.js +++ b/src/Tools.js @@ -8,6 +8,9 @@ exports.reqParamsGiven = function (keys, obj) { if(value == undefined) { return false; } + if(typeof(value) == "string" && value == "") { + return false; + } } return true; } \ No newline at end of file