Covert object keys to camelCase.
The camelCase result.
toCamelCase({ hello_world: 'Hello World!' }); // { helloWorld: 'Hello World!' }
The target object.
Covert object keys to camelCase.
Returns
The camelCase result.
Example