camelcase-object-deep

1.1.7 • Public • Published

camelcase-object-deep

NPM

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.

Package Sidebar

Install

npm i camelcase-object-deep

Weekly Downloads

2,014

Version

1.1.7

License

Apache-2.0

Unpacked Size

22.3 kB

Total Files

9

Last publish

Collaborators

  • hanjukim