mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2025-01-29 19:06:22 -07: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();
|
||
|
}
|