fixed gulp build

This commit is contained in:
Marek Kotewicz
2015-01-06 13:26:51 +01:00
parent 1954b87819
commit af9242f4cc
9 changed files with 23 additions and 26 deletions

View File

@ -46,7 +46,7 @@ var findMethodIndex = function (json, methodName) {
};
var padLeft = function (string, chars) {
return Array(chars - string.length + 1).join("0") + string;
return new Array(chars - string.length + 1).join("0") + string;
};
var setupInputTypes = function () {