camelcase-object-deep
v1.1.7
Published
Convert object keys recursivly to camelCase using lodash
Downloads
11,772
Maintainers
Readme
camelcase-object-deep
Convert object keys recursivly to camelCase using lodash
Install
$ npm install camelcase-object-deep
Usage
const camelcaseObjectDeep = require('camelcase-object-deep');
// Convert an object
camelcaseObjectDeep({'foo-bar': true});
//=> {fooBar: true}
// Convert an array of objects
camelcaseObjectDeep([{'foo-bar': true}, {'bar-foo': false}]);
//=> [{fooBar: true}, {barFoo: false}]
camelcaseObjectDeep({'foo-bar': true, nested: {unicorn_rainbow: true}}, {deep: true});
//=> {fooBar: true, nested: {unicornRainbow: true}}
const camelcaseObjectDeep = require('camelcase-object-deep');
const argv = require('minimist')(process.argv.slice(2));
//=> {_: [], 'foo-bar': true}
camelcaseObjectDeep(argv);
//=> {_: [], fooBar: true}
API
camelcaseObjectDeep(input)
input
Type: Object
Object[]
Object or array of objects to camelCase.
License
Source files are distributed under the Apache Version 2.0 license found in the LICENSE file.