(str: string)
| 77 | * @returns A new string with the first letter capitalized. |
| 78 | */ |
| 79 | export function capitalizeFirstLetter(str: string): string { |
| 80 | return str.charAt(0).toUpperCase() + str.slice(1); |
| 81 | } |
| 82 | |
| 83 | /** |
| 84 | * Normalizes free-form names to canonical storage format. |
no outgoing calls
no test coverage detected