Creates a new object from the specified object, where all the keys are in snake-case
const myObj = { FirstName: "Adam", "last-name": "Smith" };const myObjLower = snakeCaseKeys(myObj); // {first_name: "Adam", last_name: "Smith"}
Generated using TypeDoc
Creates a new object from the specified object, where all the keys are in snake-case
Example