repo.or.cz
/
ProtonMail-WebClient.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Use source loader for email sprite icons
[ProtonMail-WebClient.git]
/
packages
/
utils
/
uncapitalize.ts
blob
f4804d2a04a3ae14eb938536a5af7aa4ab0a8668
1
/**
2
* Uncapitalize the first letter in a string.
3
*/
4
export default function uncapitalize(str: string) {
5
if (str === '') {
6
return '';
7
}
8
return str[0].toLowerCase() + str.slice(1);
9
}