convert-cases
TypeScript icon, indicating that this package has built-in type declarations

1.2.5 • Public • Published

convert-cases

Utilities to convert camelCase to sanke_case and snake_case to camelCase.
Nested object keys can also be converted together.

Get started

// use npm
$ npm i convert-cases -S

// use Yarn
$ yarn add convert-cases

Usage

4 functions are provided.

  • deeplyCamelize : Convert all nested object keys to camelCase.
  • deeplySnakize : Convert all nested object keys to snake_case.
  • snakeToCamel : Converts single string to camelCase.
  • camelToSnake : Converts single string to snake_case.

How to camelCase the keys of nested objects together

import { deeplyCamelize } from 'convert-cases'

const obj = {
  test_case: '1',
  array: [
    { array_case: 1 },
    { array_case: 2 },
  ],
}

deeplyCamelize(obj) // { testCase: '1', array: [ { arrayCase: 1 }, { arrayCase: 2 } ] }

In the case of TypeScript

You can specify the type before and after conversion by specifying generics.
However, no strict type checking is performed.

deeplyCamelize<BeforeObjType, AfterObjType>(obj)

How to snake_case the keys of nested objects together

import { deeplySnakize } from 'convert-cases'

const obj = {
  testCase: '1',
  array: [
    { arrayCase: 1 },
    { arrayCase: 2 },
  ],
}

deeplySnakize(obj) // { test_case: '1', array: [ { array_case: 1 }, { array_case: 2 } ] }

In the case of TypeScript

You can specify the type before and after conversion by specifying generics.
However, no strict type checking is performed.

deeplySnakize<BeforeObjType, AfterObjType>(obj)

How to convert a single string to camelCase

import { snakeToCamel } from 'convert-cases'

snakeToCamel('snake_case') // 'snakeCase'

How to convert a single string to snake_case

import { camelToSnake } from 'convert-cases'

snakeToCamel('camelCase') // 'camel_case'

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 1.2.5
    73
    • latest

Version History

  • Version
    Downloads (Last 7 Days)
    • Published
  • 1.2.5
    73
  • 1.2.0
    31
  • 1.1.0
    4
  • 1.0.0
    0
  • 0.9.0
    0

Package Sidebar

Install

npm i convert-cases

Weekly Downloads

108

Version

1.2.5

License

Apache-2.0

Unpacked Size

19.4 kB

Total Files

33

Last publish

Collaborators

  • akoarum