Fixing tests

This commit is contained in:
Kevin Greene
2017-10-30 11:12:19 -07:00
parent d17893c89b
commit 2fd6e126d1
6 changed files with 12 additions and 14 deletions

View File

@@ -52,7 +52,8 @@ cli.main(function (args, options) {
}
return str;
}
for (i = 0, l = this.argc; i < l; i++) {
var l: number = this.argc;
for (i = 0; i < l; i++) {
args[i] = escape(args[i]);
}
options.separator = escape(options.separator);