Like minimist but flags are converted to camelCase
npm install minimost   

- Flags in kebab-case are converted to camelCase, eg: --foo-bar foo results in { fooBar: 'foo' }
- Preserve arguments after --, eg: -- npm test results in { '--': ['npm', 'test'] }
- Separate flags and input, eg: ./bin foo -w results in { input: ['foo'], flags: { w: true } }
This is similar to meow, but I sometime just want to parse argv without being a real CLI app.
``bash`
yarn add minimost
`js
const minimost = require('minimost')
minimost(process.argv.slice(2), options)
`
#### options
minimist options, options['--'] is true by default here.
1. Fork it!
2. Create your feature branch: git checkout -b my-new-featuregit commit -am 'Add some feature'
3. Commit your changes: git push origin my-new-feature`
4. Push to the branch:
5. Submit a pull request :D
minimost © egoist, Released under the MIT License.
Authored and maintained by egoist with help from contributors (list).
> egoist.sh · GitHub @egoist · Twitter @_egoistlily