4 lines
139 B
TypeScript
4 lines
139 B
TypeScript
export const toCamelCase = (str: string) => {
|
|
return str.toLowerCase().replace(/[^a-zA-Z0-9]+(.)/g, (_, char) => char.toUpperCase());
|
|
};
|