coyotte508's picture
coyotte508 HF staff
🔥 Remove lodash from client code
9a79ad0
raw history blame
No virus
197 Bytes
export const kebabCase = (str: string): string =>
(str.match(/[A-Z]{2,}(?=[A-Z][a-z0-9]*|\b)|[A-Z]?[a-z0-9]*|[A-Z]|[0-9]+/g) ?? [])
.filter(Boolean)
.map((x) => x.toLowerCase())
.join('-');