2.0.1 • Published 1 year ago

decamelize-keys v2.0.1

Weekly downloads
4,815,862
License
MIT
Repository
github
Last release
1 year ago

decamelize-keys

Convert object keys from camel case using decamelize

Install

npm install decamelize-keys

Usage

import decamelizeKeys from 'decamelize-keys';

// Convert an object
decamelizeKeys({fooBar: true});
//=> {foo_bar: true}

// Convert an array of objects
decamelizeKeys([{fooBar: true}, {barFoo: false}]);
//=> [{foo_bar: true}, {bar_foo: false}]

API

decamelizeKeys(input, options?)

input

Type: object | object[]

An object or array of objects to decamelize.

options

Type: object

separator

Type: string\ Default: '_'

The character or string used to separate words.

import decamelizeKeys from 'decamelize-keys';

decamelizeKeys({fooBar: true});
//=> {foo_bar: true}

decamelizeKeys({fooBar: true}, {separator: '-'});
//=> {'foo-bar': true}
exclude

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

Exclude keys from being decamelized.

deep

Type: boolean\ Default: false

Recurse nested objects and objects in arrays.

import decamelizeKeys from 'decamelize-keys';

decamelizeKeys({fooBar: true, nested: {unicornRainbow: true}}, {deep: true});
//=> {foo_bar: true, nested: {unicorn_rainbow: true}}

Related

archetype-libraryeasy-select-rnchinjowwchinjowreact-native-bluetooth2killi8n-react-native-fast-imagesb-filmotheque@sbesson/sample-vuejsobject-selectairscanairscan-examplereact-native-esc-pos-sahaab@borisovart/atol-kkt-module@frxf/frxfdeneme323112@ntt_app/react-native-custom-notificationreact-native-covid-sdk@jttechnic/interpretermysql-formatreact-native-printer-brothersreact-native-shekhar-bridge-testcogoportutils@oiti/documentoscopy-react-native@mink-opn/build-tokensquoc-test@saaspe/componentsexpand-react-bridgeopea-bootstraapluminos-ui-core@everything-registry/sub-chunk-1458iqra-calculatorjawwy-sdkjawwy_gamification_releasereact-native-sphereuisphereuijawwy_libraryreact-native-credit-card-pkgreact-native-jawwy_samplejawwy_library_newjawy_library_v1gamification-jawwy-libraryframework_test_library_sixdee_new_jawwyibraz-calculatortest_lib_module_aarmiracle-webpack-tree-shakingmama-exportermeow-emekamiguelcostero-ng2-toastyzzzxxxyyy321123new-awesome-4321neural_compressor_ext_lab_customizedneural_compressor_ext_lab_customized_2native-kakao-loginnative-modal-damage-vehiclenative-google-loginnative-date-picker-modulenative-apple-loginmd-vditorover-armour-masteropea-bootstrapnpm_one_12_34_1_npm_one_1_2_3npm_one_2_2npm_qwertyreact-native-additionreact-native-arps-authorize-netreact-native-auth-service-clientreact-native-animate-textreact-native-awesome-module-latestreact-native-awesome-android-123react-native-awesome-android-123-zeotapreact-native-awesome-module-tworeact-native-bubble-chartreact-native-build-vesion-getterreact-native-ghn-ekycreact-native-fedlight-dsmreact-native-get-countriesreact-native-pulsator-nativereact-native-rabbitmq-allreact-native-radio-bic-group-libreact-native-multiselectorreact-native-mun-kitreact-native-my-first-try-arun-ramyareact-native-onrampreact-native-payu-payment-testingreact-native-plugpag-wrapperreact-native-progress-arrowreact-native-reanimated-sortable-listreact-native-recent-framework-updatereact-native-android-video-player-viewreact-native-arun-ramya-testreact-native-arunjeyam1987react-native-arunmeena1987react-native-arunramya151react-native-basic-appreact-native-basic-screenreact-native-bridge-packagereact-native-check-componentreact-native-app-bubblereact-native-chenaar
1.1.1

1 year ago

2.0.1

1 year ago

2.0.0

1 year ago

1.1.0

8 years ago

1.0.0

8 years ago