New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

camelcase-object-deep

Package Overview
Dependencies
Maintainers
1
Versions
17
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

camelcase-object-deep

Convert object keys recursivly to camelCase using lodash

latest
Source
npmnpm
Version
1.1.7
Version published
Maintainers
1
Created
Source

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.

Keywords

obj

FAQs

Package last updated on 29 Apr 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts