Write a function camelCaseKeys(obj) that takes an object and returns a new object where all keys are converted to camelCase.
The function should:
Example
camelCaseKeys({ "first_name": "John", "last-name": "Doe", "address_info": { "zip_code": 12345 } }); // { firstName: "John", lastName: "Doe", addressInfo: { zipCode: 12345 } }
JavaScript Function
No test results yet
Click "Run" to execute tests