diff --git a/lib/util.js b/lib/util.js index 5d927a7e..ba0afd9c 100644 --- a/lib/util.js +++ b/lib/util.js @@ -586,12 +586,12 @@ }; /** - * functions check is variable is pType + * functions check is variable is type * @param variable - * @param pType + * @param type */ - this.isType = function(variable, pType) { - return typeof variable === pType; + this.isType = function(variable, type) { + return typeof variable === type; }; /**