twenty / packages /twenty-shared /src /utils /strings /camelToKebab.ts
Jules
Initial clean CRM deployment with prebuilt assets
d9494a5
Raw
History Blame Contribute Delete
118 Bytes
export const camelToKebab = (str: string): string =>
str.replace(/([A-Z])/g, (match) => `-${match.toLowerCase()}`);