-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathargs.js
35 lines (31 loc) · 1.01 KB
/
args.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
var decamelize = require('decamelize');
exports.isArgvSpecified = function(argv) {
return (exports.argvIndex(argv) !== -1);
};
exports.argvValue = function(argv, defaultVal) {
var i = exports.argvIndex(argv);
if (i >= 0 && i < process.argv.length - 1) {
// The arg after the argv/name is it's value
return process.argv[i + 1];
}
return defaultVal;
};
exports.argvIndex = function(argv) {
var index = _argvIndex(argv);
if (index === -1 && typeof argv === 'string' && argv.indexOf('--') === 0) {
// For some dumb reason, gulp-runner thought it would be a good idea to
// dick around with the arg names, decamelizing them. Lets see can we
// find the arg that way, if it starts with '--'.
return _argvIndex(decamelize(argv, '-'));
} else {
return index;
}
};
function _argvIndex(argv) {
for (var i = 0; i < process.argv.length; i++) {
if (process.argv[i] === argv) {
return i;
}
}
return -1;
}