peach a19a732be8 commit message | 2 yıl önce | |
---|---|---|
.. | ||
node_modules | 2 yıl önce | |
index.js | 2 yıl önce | |
license | 2 yıl önce | |
package.json | 2 yıl önce | |
readme.md | 2 yıl önce |
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