UNPKG

98 BPlain TextView Raw
1export function capitalize(str: string) {
2 return str.replace(str[0], str[0].toUpperCase())
3}