File size: 118 Bytes
d9494a5
 
1
2
3
export const camelToKebab = (str: string): string =>
  str.replace(/([A-Z])/g, (match) => `-${match.toLowerCase()}`);