b593f0b
1
2
3
4
export function capitalize(str: string) { return str.replace(str[0], str[0].toUpperCase()) }