Package Exports
- dasherize
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (dasherize) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
dasherize
recursively transform key strings to dash-case
example
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"
}
]
}
methods
var dasherize = require('dasherize')
dasherize(obj)
Convert the key strings in obj
to dash-case recursively.
dasherize(str)
Convert the string to dash-case.
install
With npm do:
npm install dasherize
To use in the browser, use browserify.
license
derives directly from camelize
MIT