Use source loader for email sprite icons
[ProtonMail-WebClient.git] / packages / utils / capitalize.ts
blob22cab71ef5c22d26988c6a0db0b6f5397d7df036
1 /**
2  * Capitalize the first letter in a string.
3  */
4 export default function capitalize(str: string | undefined) {
5     if (str === undefined) {
6         return;
7     }
9     if (str === '') {
10         return str;
11     }
12     return str[0].toUpperCase() + str.slice(1);