All Downloads are FREE. Search and download functionalities are using the official Maven repository.

package.readme.md Maven / Gradle / Ivy

Go to download

Convert a camelized string into a lowercased one with a custom separator: unicornRainbow → unicorn_rainbow

The newest version!
# decamelize [![Build Status](https://travis-ci.org/sindresorhus/decamelize.svg?branch=master)](https://travis-ci.org/sindresorhus/decamelize)

> Convert a camelized string into a lowercased one with a custom separator
> Example: `unicornRainbow` → `unicorn_rainbow` ## Install ``` $ npm install --save decamelize ``` ## Usage ```js const decamelize = require('decamelize'); decamelize('unicornRainbow'); //=> 'unicorn_rainbow' decamelize('unicornRainbow', '-'); //=> 'unicorn-rainbow' ``` ## API ### decamelize(input, [separator]) #### input Type: `string` #### separator Type: `string`
Default: `_` ## Related See [`camelcase`](https://github.com/sindresorhus/camelcase) for the inverse. ## License MIT © [Sindre Sorhus](https://sindresorhus.com)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy