Strips out the filename from argv, based on whether the running app is electron or not.
Standard node apps: node bin.js argv1 argv2 ... argvn converts to argv1 argv2 ... argvn
node bin.js argv1 argv2 ... argvn
argv1 argv2 ... argvn
Bundled Electron apps: bin argv1 argv2 ... argvn converts to argv1 argv2 ... argvn
bin argv1 argv2 ... argvn
the arguments without the filename
Optional
the argv to process from (defaults to process.argv)
Generated using TypeDoc
Strips out the filename from argv, based on whether the running app is electron or not.
Standard node apps:
node bin.js argv1 argv2 ... argvnconverts toargv1 argv2 ... argvnBundled Electron apps:
bin argv1 argv2 ... argvnconverts toargv1 argv2 ... argvnReturns
the arguments without the filename