José Quiñones Flores 4564da0130 Added Laravel project and removed sensitive data | 4 anni fa | |
---|---|---|
.. | ||
index.js | 4 anni fa | |
license | 4 anni fa | |
package.json | 4 anni fa | |
readme.md | 4 anni fa |
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