```js require('yargs-parser')('--foo=1 --bar=0.1 --baz=.2') { _: [], foo: 1, bar: '0.1', baz: 0.2 } ``` PR: https://github.com/yargs/yargs-parser/pull/388