Skip to content

Convert object keys from camelCase to lowercase with a custom separator

License

Notifications You must be signed in to change notification settings

dsblv/decamelize-keys

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.

Related

See camelcase-keys for the inverse.

License

MIT © Sindre Sorhus, Dmirty Sobolev

About

Convert object keys from camelCase to lowercase with a custom separator

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 100.0%