limepot-xyz/BETA/mybulma/node_modules/decamelize-keys
LimePot 76722fec47 Beta Site
Going to slowly work on a Bulma site, which will end up being the main site.

Currently under the /BETA/ folder so Alpha site will still be main site.
2022-12-20 16:23:37 -07:00
..
node_modules/map-obj Beta Site 2022-12-20 16:23:37 -07:00
index.js Beta Site 2022-12-20 16:23:37 -07:00
license Beta Site 2022-12-20 16:23:37 -07:00
package.json Beta Site 2022-12-20 16:23:37 -07:00
readme.md Beta Site 2022-12-20 16:23:37 -07:00

decamelize-keys Build Status

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

Install

$ npm install --save decamelize-keys

Usage

const decamelizeKeys = require('decamelize-keys');

decamelizeKeys({fooBar: true}, '-');
//=> {'foo-bar': true}

API

decamelizeKeys(input, [separator], [options])

input

Type: object
Required

Object to decamelize.

separator

Type: string
Default: _

A string to insert between words.

options

Type: object

separator

Type: string
Default: _

Alternative way to specify separator.

exclude

Type: array
Default: []

Exclude keys from being decamelized.

See camelcase-keys for the inverse.

License

MIT © Sindre Sorhus, Dmirty Sobolev