root 3bf41bf355 update | il y a 1 an | |
---|---|---|
.. | ||
node_modules | il y a 1 an | |
index.js | il y a 1 an | |
license | il y a 1 an | |
package.json | il y a 1 an | |
readme.md | il y a 1 an |
Convert object keys from camelCase to lowercase with a custom separator using
decamelize
This project was forked from camelcase-keys
and converted to do the opposite
$ npm install --save decamelize-keys
const decamelizeKeys = require('decamelize-keys');
decamelizeKeys({fooBar: true}, '-');
//=> {'foo-bar': true}
Type: object
Required
Object to decamelize.
Type: string
Default: _
A string to insert between words.
Type: object
Type: string
Default: _
Alternative way to specify separator.
Type: array
Default: []
Exclude keys from being decamelized.
See camelcase-keys
for the inverse.
MIT © Sindre Sorhus, Dmirty Sobolev