chuwanghui 6d115466a5 electron库 | vor 6 Jahren | |
---|---|---|
.. | ||
index.js | vor 6 Jahren | |
license | vor 6 Jahren | |
package.json | vor 6 Jahren | |
readme.md | vor 6 Jahren |
Convert a camelized string into a lowercased one with a custom separator
Example:unicornRainbow
→unicorn_rainbow
$ npm install --save decamelize
const decamelize = require('decamelize');
decamelize('unicornRainbow');
//=> 'unicorn_rainbow'
decamelize('unicornRainbow', '-');
//=> 'unicorn-rainbow'
Type: string
Type: string
Default: _
See camelcase
for the inverse.
MIT © Sindre Sorhus