Migrate to a monorepo structure (#2909)
This commit is contained in:
3
packages/twenty-server/src/utils/capitalize.ts
Normal file
3
packages/twenty-server/src/utils/capitalize.ts
Normal file
@ -0,0 +1,3 @@
|
||||
export const capitalize = (string: string) => {
|
||||
return string.charAt(0).toUpperCase() + string.slice(1);
|
||||
};
|
||||
Reference in New Issue
Block a user