We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
process.execArg
1 parent b2a3dce commit b9bdb94Copy full SHA for b9bdb94
doc/api/process.md
@@ -1711,15 +1711,13 @@ the script name. These options are useful in order to spawn child processes with
1711
the same execution environment as the parent.
1712
1713
```bash
1714
-node --harmony script.js --version
+node --icu-data-dir=./foo --require ./bar.js script.js --version
1715
```
1716
1717
Results in `process.execArgv`:
1718
1719
-<!-- eslint-disable semi -->
1720
-
1721
-```js
1722
-['--harmony']
+```json
+["--icu-data-dir=./foo", "--require", "./bar.js"]
1723
1724
1725
And `process.argv`:
0 commit comments