]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/root-helpers/string.ts
Translated using Weblate (Vietnamese)
[github/Chocobozzz/PeerTube.git] / client / src / root-helpers / string.ts
1 function capitalizeFirstLetter (str: string) {
2 return str.charAt(0).toUpperCase() + str.slice(1)
3 }
4
5 export {
6 capitalizeFirstLetter
7 }