Creates a new object from the specified object, where all the keys are in camel-case
const myObj = { First_name: "Adam", "last-name": "Smith" };const myObjLower = camelCaseKeys(myObj); // {firstName: "Adam", lastName: "Smith"}
Generated using TypeDoc
Creates a new object from the specified object, where all the keys are in camel-case
Example