Package Exports
- camelize
- camelize/index.js
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 (camelize) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
camelize 
recursively transform key strings to camel-case
example
var camelize = require('camelize');
var obj = {
fee_fie_foe: 'fum',
beep_boop: [
{ 'abc.xyz': 'mno' },
{ 'foo-bar': 'baz' }
]
};
var res = camelize(obj);
console.log(JSON.stringify(res, null, 2));
output:
{
"feeFieFoe": "fum",
"beepBoop": [
{
"abcXyz": "mno"
},
{
"fooBar": "baz"
}
]
}
methods
var camelize = require('camelize')
camelize(obj)
Convert the key strings in obj
to camel-case recursively.
install
With npm do:
npm install camelize
To use in the browser, use browserify.
license
MIT