```js const parse = require('yargs-parser') console.log(parse('--option=--value')) ``` returns, as expected: ```js { _: [], option: '--value' } ``` However: ```js const parse = require('yargs-parser') console.log(parse('--option=--value', { array: ['option'] })) ``` returns: ```js { _: [], option: [], value: true } ``` when it would be expected to return: ```js { _: [], option: [ '--value' ] } ``` Same issue with `narg: { option: 1 }`. `nargs-eats-options` does not change anything to this behavior.