another swap of .test for .match
This commit is contained in:
Родитель
8ef0bdf774
Коммит
d1da40819a
2
index.js
2
index.js
|
@ -63,7 +63,7 @@ module.exports = function (args, opts) {
|
|||
else if (/^--.+/.test(arg)) {
|
||||
var key = arg.match(/^--(.+)/)[1];
|
||||
var next = args[i + 1];
|
||||
if (next !== undefined && !next.match(/^-/)
|
||||
if (next !== undefined && !/^-/.test(next)
|
||||
&& !flags.bools[key]
|
||||
&& (aliases[key] ? !flags.bools[aliases[key]] : true)) {
|
||||
setArg(key, next);
|
||||
|
|
Загрузка…
Ссылка в новой задаче