PeerTube/client/src/root-helpers/string.ts

8 lines
137 B
TypeScript
Raw Normal View History

2022-03-15 09:19:41 -05:00
function capitalizeFirstLetter (str: string) {
return str.charAt(0).toUpperCase() + str.slice(1)
}
export {
capitalizeFirstLetter
}