twenty / packages /twenty-shared /src /utils /strings /kebabToCamelCase.ts
Jules
Initial clean CRM deployment with prebuilt assets
d9494a5
Raw
History Blame Contribute Delete
118 Bytes
export const kebabToCamelCase = (str: string): string =>
str.replace(/-([a-z])/g, (_, char) => char.toUpperCase());