**change-json-casing** provides the easy and reliable way of changing the casing of keys for the whole JSON data.
npm install change-json-casingbash
npm install change-json-casing
`
> Pass the complete array or object as a parameter to the desired function
`js
import { toCamelCase } from 'change-json-casing';
const result = toCamelCase([{ Name: 'Test', UserId: 123 }])
`
> result
`js
[{"name":"Test","userId":123}]
``