return '' if flag is string and empty
This commit is contained in:
Родитель
cd46bf93a0
Коммит
fa63ed4651
4
index.js
4
index.js
|
@ -74,7 +74,7 @@ module.exports = function (args, opts) {
|
|||
i++;
|
||||
}
|
||||
else {
|
||||
setArg(key, true);
|
||||
setArg(key, flags.strings[key] ? '' : true);
|
||||
}
|
||||
}
|
||||
else if (/^-[^-]+/.test(arg)) {
|
||||
|
@ -119,7 +119,7 @@ module.exports = function (args, opts) {
|
|||
i++;
|
||||
}
|
||||
else {
|
||||
setArg(key, true);
|
||||
setArg(key, flags.strings[key] ? '' : true);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -162,6 +162,26 @@ test('stringArgs', function (t) {
|
|||
t.end();
|
||||
});
|
||||
|
||||
test('empty strings', function(t) {
|
||||
var s = parse([ '-s' ], { string: 's' }).s;
|
||||
t.equal(s, '');
|
||||
t.equal(typeof s, 'string');
|
||||
|
||||
var str = parse([ '--str' ], { string: 'str' }).str;
|
||||
t.equal(str, '');
|
||||
t.equal(typeof str, 'string');
|
||||
|
||||
var letters = parse([ '-at' ], {
|
||||
string: 't'
|
||||
});
|
||||
|
||||
t.equal(letters.a, true);
|
||||
t.equal(letters.t, '');
|
||||
|
||||
t.end();
|
||||
});
|
||||
|
||||
|
||||
test('slashBreak', function (t) {
|
||||
t.same(
|
||||
parse([ '-I/foo/bar/baz' ]),
|
||||
|
|
Загрузка…
Ссылка в новой задаче