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 ... argvn
converts toargv1 argv2 ... argvn
Bundled Electron apps:
bin argv1 argv2 ... argvn
converts toargv1 argv2 ... argvn
Returns
the arguments without the filename