wallet-core/node_modules/yargs-parser/lib/tokenize-arg-string.js

39 lines
797 B
JavaScript
Raw Normal View History

2017-05-03 15:35:00 +02:00
// take an un-split argv string and tokenize it.
module.exports = function (argString) {
if (Array.isArray(argString)) return argString
var i = 0
2017-12-10 21:51:33 +01:00
var prevC = null
2017-05-03 15:35:00 +02:00
var c = null
var opening = null
var args = []
for (var ii = 0; ii < argString.length; ii++) {
2017-12-10 21:51:33 +01:00
prevC = c
2017-05-03 15:35:00 +02:00
c = argString.charAt(ii)
// split on spaces unless we're in quotes.
if (c === ' ' && !opening) {
2017-12-10 21:51:33 +01:00
if (!(prevC === ' ')) {
i++
}
2017-05-03 15:35:00 +02:00
continue
}
// don't split the string if we're in matching
// opening or closing single and double quotes.
if (c === opening) {
opening = null
continue
} else if ((c === "'" || c === '"') && !opening) {
opening = c
continue
}
if (!args[i]) args[i] = ''
args[i] += c
}
return args
}