7 lines
165 B
TypeScript
7 lines
165 B
TypeScript
export function capitalize(str: string): string {
|
|
if (str.length === 0) {
|
|
return str;
|
|
}
|
|
return str.charAt(0).toUpperCase() + str.slice(1).toLowerCase();
|
|
}
|