lnked/react-starter

View on GitHub
src/helpers/utils/kebab-case.ts

Summary

Maintainability
A
0 mins
Test Coverage
export const kebabCase = (str: string): string =>
  str && str
    .replace(/([a-z])([A-Z])/g, '$1-$2')
    .replace(/\s+/g, '-')
    .toLowerCase()