next.js/examples/cms-payload/utilities/toKebabCase.ts
toKebabCase.ts6 lines144 B
export const toKebabCase = (string): string =>
  string
    ?.replace(/([a-z])([A-Z])/g, "$1-$2")
    .replace(/\s+/g, "-")
    .toLowerCase();
Quest for Codev2.0.0
/
SIGN IN