d0aa19c
1
2
3
4
5
export function capitalize(s: string): string { return s.charAt(0).toUpperCase() + s.slice(1); }