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

@leothesen/change-case

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@leothesen/change-case

Recursive functions for changing the case of nested objects.

latest
Source
npmnpm
Version
1.3.0
Version published
Maintainers
1
Created
Source

change-case

Recursive functions for changing the case of object fields. Best

Install

npm install @leothesen/change-case

Usage

const { 
  toCamelCase,
  toSnakeCase
} = require('@leothesen/change-case');

const snake_case = {
  mixed_array_field: [
    'text',
    {
      plain_field: 'text',
      mixed_object_field: {
        numeric_field: 42,
        arrary_field: [
          42,
          'fourty two',
          { fourty_two: 42 }
        ]
      }
    }
  ]
};

const camelCase = toCamelCase(snake_case);
/**
 * camelCase = {
 *  plainField: 'text',
 *  mixedObjectField: {
 *    numericField: 42,
 *    arrayField: [
 *      42,
 *      'fourty two',
 *      { fourtyTwo: 42}
 *    ]
 *  }
 * }
 */

License

MIT

Keywords

change

FAQs

Package last updated on 02 Apr 2020

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