1.0.5 • Published 3 years ago

caseize v1.0.5

Weekly downloads
48
License
ISC
Repository
github
Last release
3 years ago
import caseize from 'caseize'

const inputData = {
  snake_case_key: 'value',
  mixed_caseKey: 'value',
}

const outputData = caseize(inputData, 'camelcase')

// outputData === {
//   snakeCaseKey: 'value',
//   mixedCaseKey: 'value,
// }
$ npm i caseize

This project is licensed under the ISC License