capitalize had been moved into twenty-shared. Let's remove the duplicates in server and front !
6 lines
159 B
TypeScript
6 lines
159 B
TypeScript
import camelCase from 'lodash.camelcase';
|
|
|
|
import { capitalize } from 'twenty-shared';
|
|
|
|
export const pascalCase = (str: string) => capitalize(camelCase(str));
|