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