-
Notifications
You must be signed in to change notification settings - Fork 8
/
index.js
45 lines (39 loc) · 1.66 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
import arrayify from 'array-back'
import { isOption } from './option.js'
/**
* @module command-line-commands
* @example
* const commandLineCommands = require('command-line-commands')
*/
/**
* Parses the `argv` value supplied (or `process.argv` by default), extracting and returning the `command` and remainder of `argv`. The command will be the first value in the `argv` array unless it is an option (e.g. `--help`).
*
* @param {string|string[]} - One or more command strings, one of which the user must supply. Include `null` to represent "no command" (effectively making a command optional).
* @param [argv] {string[]} - An argv array, defaults to the global `process.argv` if not supplied.
* @returns {{ command: string, argv: string[] }}
* @throws `INVALID_COMMAND` - user supplied a command not specified in `commands`.
* @alias module:command-line-commands
*/
function commandLineCommands (commands, argv) {
if (!commands || (Array.isArray(commands) && !commands.length)) {
throw new Error('Please supply one or more commands')
}
if (argv) {
argv = arrayify(argv)
} else {
/* if no argv supplied, assume we are parsing process.argv. */
/* never modify the global process.argv directly. */
argv = process.argv.slice(0)
argv.splice(0, 2)
}
/* the command is the first arg, unless it's an option (e.g. --help) */
const command = (isOption(argv[0]) || !argv.length) ? null : argv.shift()
if (arrayify(commands).indexOf(command) === -1) {
const err = new Error('Command not recognised: ' + command)
err.command = command
err.name = 'INVALID_COMMAND'
throw err
}
return { command, argv }
}
export default commandLineCommands