Files
e2b-dev--e2b/utils/capitalize.ts
T
2023-03-10 15:20:55 +00:00

4 lines
97 B
TypeScript

export function capitalize(str: string) {
return str.charAt(0).toUpperCase() + str.slice(1);
}