Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: allow disabling duplicate-arguments-array
Lets you disable "duplicates" behaviour ``` yargsParser('-x 1 -x 2') // => {x: [1, 2]} ``` ``` yargsParser('-x 1 -x 2', {configuration:{'duplicate-arguments-array': false}}) // => {x: 2} ```
- Loading branch information