]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/root-helpers/string.ts
Merge branch 'release/4.3.0' into develop
[github/Chocobozzz/PeerTube.git] / client / src / root-helpers / string.ts
CommitLineData
ff6a266e
C
1function capitalizeFirstLetter (str: string) {
2 return str.charAt(0).toUpperCase() + str.slice(1)
3}
4
5export {
6 capitalizeFirstLetter
7}