|
5 years ago | |
---|---|---|
.. | ||
example | 5 years ago | |
test | 5 years ago | |
.jshintrc | 5 years ago | |
.travis.yml | 5 years ago | |
LICENSE | 5 years ago | |
index.js | 5 years ago | |
package.json | 5 years ago | |
readme.markdown | 5 years ago |
recursively transform key strings to dash-case
var dasherize = require('dasherize');
var obj = {
feeFieFoe: 'fum',
beepBoop: [
{ 'abcXyz': 'mno' },
{ 'fooBar': 'baz' }
]
};
var res = dasherize(obj);
console.log(JSON.stringify(res, null, 2));
output:
{
"fee-fie-foe": "fum",
"beep-boop": [
{
"abc-xyz": "mno"
},
{
"foo-bar": "baz"
}
]
}
var dasherize = require('dasherize')
Convert the key strings in obj
to dash-case recursively.
Convert the string to dash-case.
With npm do:
npm install dasherize
To use in the browser, use browserify.
derives directly from camelize
MIT