camelcase-keys

WebJar for camelcase-keys

Лицензия

Лицензия

MIT
Категории

Категории

KeY Данные Data Formats Formal Verification
Группа

Группа

org.webjars.npm
Идентификатор

Идентификатор

camelcase-keys
Последняя версия

Последняя версия

6.2.2
Дата

Дата

Тип

Тип

jar
Описание

Описание

camelcase-keys
WebJar for camelcase-keys
Ссылка на сайт

Ссылка на сайт

https://www.webjars.org
Система контроля версий

Система контроля версий

https://github.com/sindresorhus/camelcase-keys

Скачать camelcase-keys

Как подключить последнюю версию

<!-- https://jarcasting.com/artifacts/org.webjars.npm/camelcase-keys/ -->
<dependency>
    <groupId>org.webjars.npm</groupId>
    <artifactId>camelcase-keys</artifactId>
    <version>6.2.2</version>
</dependency>
// https://jarcasting.com/artifacts/org.webjars.npm/camelcase-keys/
implementation 'org.webjars.npm:camelcase-keys:6.2.2'
// https://jarcasting.com/artifacts/org.webjars.npm/camelcase-keys/
implementation ("org.webjars.npm:camelcase-keys:6.2.2")
'org.webjars.npm:camelcase-keys:jar:6.2.2'
<dependency org="org.webjars.npm" name="camelcase-keys" rev="6.2.2">
  <artifact name="camelcase-keys" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.webjars.npm', module='camelcase-keys', version='6.2.2')
)
libraryDependencies += "org.webjars.npm" % "camelcase-keys" % "6.2.2"
[org.webjars.npm/camelcase-keys "6.2.2"]

Зависимости

compile (3)

Идентификатор библиотеки Тип Версия
org.webjars.npm : camelcase jar [5.3.1,6)
org.webjars.npm : map-obj jar [4.0.0,5)
org.webjars.npm : quick-lru jar [4.0.1,5)

Модули Проекта

Данный проект не имеет модулей.

camelcase-keys

Convert object keys to camel case using camelcase

Install

$ npm install camelcase-keys

Usage

const camelcaseKeys = require('camelcase-keys');

// Convert an object
camelcaseKeys({'foo-bar': true});
//=> {fooBar: true}

// Convert an array of objects
camelcaseKeys([{'foo-bar': true}, {'bar-foo': false}]);
//=> [{fooBar: true}, {barFoo: false}]

camelcaseKeys({'foo-bar': true, nested: {unicorn_rainbow: true}}, {deep: true});
//=> {fooBar: true, nested: {unicornRainbow: true}}

camelcaseKeys({a_b: 1, a_c: {c_d: 1, c_e: {e_f: 1}}}, {deep: true, stopPaths: ['a_c.c_e']}),
//=> {aB: 1, aC: {cD: 1, cE: {e_f: 1}}}

// Convert object keys to pascal case
camelcaseKeys({'foo-bar': true, nested: {unicorn_rainbow: true}}, {deep: true, pascalCase: true});
//=> {FooBar: true, Nested: {UnicornRainbow: true}}
const camelcaseKeys = require('camelcase-keys');

const argv = require('minimist')(process.argv.slice(2));
//=> {_: [], 'foo-bar': true}

camelcaseKeys(argv);
//=> {_: [], fooBar: true}

API

camelcaseKeys(input, options?)

input

Type: object | object[]

An object or array of objects to camel-case.

options

Type: object

exclude

Type: Array<string | RegExp>
Default: []

Exclude keys from being camel-cased.

stopPaths

Type: string[]
Default: []

Exclude children at the given object paths in dot-notation from being camel-cased. For example, with an object like {a: {b: '🦄'}}, the object path to reach the unicorn is 'a.b'.

camelcaseKeys({
	a_b: 1,
	a_c: {
		c_d: 1,
		c_e: {
			e_f: 1
		}
	}
}, {
	deep: true,
	stopPaths: [
		'a_c.c_e'
	]
}),
/*
{
	aB: 1,
	aC: {
		cD: 1,
		cE: {
			e_f: 1
		}
	}
}
*/
deep

Type: boolean
Default: false

Recurse nested objects and objects in arrays.

pascalCase

Type: boolean
Default: false

Uppercase the first character as in bye-byeByeBye.

camelcase-keys for enterprise

Available as part of the Tidelift Subscription.

The maintainers of camelcase-keys and thousands of other packages are working with Tidelift to deliver commercial support and maintenance for the open source dependencies you use to build your applications. Save time, reduce risk, and improve code health, while paying the maintainers of the exact dependencies you use. Learn more.

Related

Версии библиотеки

Версия
6.2.2
4.2.0
4.0.0
2.1.0
1.0.0