mirror of
https://activitypub.software/TransFem-org/Sharkey.git
synced 2024-12-18 16:12:45 +01:00
4 lines
112 B
TypeScript
4 lines
112 B
TypeScript
|
export function capitalize(s: string): string {
|
||
|
return s.charAt(0).toUpperCase() + s.slice(1).toLowerCase();
|
||
|
}
|