Creates a new object from the specified object, where all the keys are in lowercase
const myObj = { Name: "Adam", sUrnAME: "Smith" };const myObjLower = lowerCaseKeys(myObj); // {name: "Adam", surname: "Smith"}
Generated using TypeDoc
Creates a new object from the specified object, where all the keys are in lowercase
Example