This is the code:
var minimist = require('minimist')
const args = minimist(process.argv.slice(2))
console.log(args)
In the terminal, I type: npm start -a abc -b bbc
$ npm start -a abc -b bbc
{ _: [ 'abc', 'bbc' ] }
This is what I expected:
{ _: [], a: 'abc', b: 'bbc' }
This might sound silly, but please help me get out of this...