![]() System : Linux absol.cf 5.4.0-198-generic #218-Ubuntu SMP Fri Sep 27 20:18:53 UTC 2024 x86_64 User : www-data ( 33) PHP Version : 7.4.33 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, Directory : /proc/self/root/usr/local/lib/node_modules/browserify/node_modules/subarg/ |
Upload File : |
# subarg parse arguments with recursive contexts using [minimist](https://npmjs.org/package/minimist) [](https://ci.testling.com/substack/subarg) [](http://travis-ci.org/substack/subarg) This module is useful if you need to pass arguments into a piece of code without coordinating ahead of time with the main program, like with a plugin system. # example ``` js var subarg = require('subarg'); var argv = subarg(process.argv.slice(2)); console.log(argv); ``` Contexts are denoted with square brackets: ``` $ node example/show.js rawr --beep [ boop -a 3 ] -n4 --robots [ -x 8 -y 6 ] { _: [ 'rawr' ], beep: { _: [ 'boop' ], a: 3 }, n: 4, robots: { _: [], x: 8, y: 6 } } ``` # methods ``` js var subarg = require('subarg') ``` ## var argv = subarg(args, opts) Parse the arguments array `args`, passing `opts` to [minimist](https://npmjs.org/package/minimist). An opening `[` in the `args` array creates a new context and a `]` closes a context. Contexts may be nested. # install With [npm](https://npmjs.org) do: ``` npm install subarg ``` # license MIT