2024-04-26 15:43:27 +02:00

4 lines
120 B
TypeScript

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