arg parser
This commit is contained in:
parent
c302f1b105
commit
7997891cfc
1 changed files with 26 additions and 0 deletions
26
args.js
Normal file
26
args.js
Normal file
|
@ -0,0 +1,26 @@
|
|||
let argRegex = new RegExp('(\-\-[a-zA-Z0-9]+)(=)(.*)');
|
||||
|
||||
const parseArgs = () => {
|
||||
let _args = { '_': [] };
|
||||
[...process.argv.slice(2)].forEach(arg => {
|
||||
let result = argRegex.exec(arg);
|
||||
if (!!result) {
|
||||
_args[result[1].replace('--','')] = result[3];
|
||||
} else {
|
||||
_args['_'].push(arg);
|
||||
}
|
||||
});
|
||||
|
||||
return _args;
|
||||
}
|
||||
|
||||
export const args = parseArgs();
|
||||
|
||||
export const getArg = (argName) => {
|
||||
let arg = args[argName];
|
||||
if (!!arg) {
|
||||
return arg;
|
||||
} else {
|
||||
throw(`${argName} was not supplied!`);
|
||||
}
|
||||
}
|
Loading…
Add table
Reference in a new issue