-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
32 lines (29 loc) · 872 Bytes
/
index.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
const cmds = process.argv;
/**
* Method responsible to retrieve the content of a specific flag, for exemple:
* get('--env', ['webpack', '--env="production"']) => 'production'
* @param {String} flag
* @param {Array} [args]
* @return {String} Returns the content of a specific flag
*/
const get = (flag, args = process.argv) => {
return args.reduce((curr, next) => {
if (!curr) {
if (next.includes(flag)) {
return JSON.parse(next.split(flag + '=')[1]);
}
} else {
return curr;
}
}, undefined);
};
/**
* Method responsible check if some flag exists on process.argv or received args:
* @param {String} flag
* @param {Array} [args]
* @return {Boolean} result
*/
const exist = (flag, args = process.argv) => {
return !!args.filter(arg => arg.includes(flag)).length > 0;
};
module.exports = { get, exist };