rauschma / nodejs-shell-scripting

3 stars 0 forks source link

spelling #21

Open loydle opened 1 year ago

loydle commented 1 year ago

in 4.1.1.1 

'node:process' is an alternative to the global variable process:

import {argv} from 'node:process';
console.log(process.argv);

to be

import {argv} from 'node:process';
console.log(argv);