blob: cae776bc3d32abb02d35c0cc97add7dac95e4363 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
export function capitalize(s: string): string {
return toUpperCase(s.charAt(0)) + toLowerCase(s.slice(1));
}
export function toUpperCase(s: string): string {
return s.toUpperCase();
}
export function toLowerCase(s: string): string {
return s.toLowerCase();
}
|