cloudflare / cloudflare/binary-install
Allow passing args to run
Open
- Dominant language
- JavaScript
- Stars
- 48
- Forks
- 23
- PR merge metrics
- No merged PRs in 30d
Description
Ideally, the run command should accept args in place of process.argv.
```js
function run() {
...
if (arguments.length > 0) var args = arguments;
else var [, , ...args] = process.argv;
```
Contributor guide
Assessment
This issue has not been assessed yet.