A utility function to capitalize the first letter of a string.
13 weeks ago
function capitalize(str: string): string { if (!str) return str; return str.charAt(0).toUpperCase() + str.slice(1); }