1.0.5 • Published 7 years ago
camelcase-input v1.0.5
NPM Package To Convert Input Into lowerCamelcase Format
Convert your input into lowerCamelcase format, this Node.js module allows you to convert string, array. object into lowerCamelcase.
Installation
Install with the node package manager npm:
- Using npm
$ npm install camelcase-input --save - Using yarn
$ yarn add camelcase-input
How To Use?
Convert string Input
const camelcase = require('camelcase-input').camelcase
console.log(camelcase('Foo-Bar'))
/* OUTPUT */
fooBarConvert object Input
const camelcase = require('camelcase-input').camelcase
console.log(camelcase({'foo-bar': true}))
/* OUTPUT */
{ fooBar: true }Convert array of objects Input
const camelcase = require('camelcase-input').camelcase
console.log(camelcase([{'foo-bar': true}, {'is_that_you': true}]))
/* OUTPUT */
[ { fooBar: true }, { isThatYou: true } ]Convert array of string Input
const camelcase = require('camelcase-input').camelcase
console.log(camelcase(['Foo-Bar', 'are-you-there']))
/* OUTPUT */
fooBar, areYouThereConvert array of objects Input ({ deep: true })
const camelcase = require('camelcase-input').camelcase
console.log(camelcase([{'FOo-bar': [{'abc-df__r': true}, {'tghd_dfdf--ee': true}]}, {'bar-foo': { 'Test-te': {'opt-tdt': 'dfdfdf'} }}], { deep: true })))
/* OUTPUT */
[{ fooBar: [{ abcDfR: true }, { tghdDfdfEe: true }] },{ barFoo: { testTe: { optTdt: dfdfdf } } }]Changelog
- 1.0.0 Initial version
- 1.0.1 email regex added (email is not converted)
- 1.0.5 some issues resolved
