Files
Frontend/src/common/string-utils.ts

10 lines
229 B
TypeScript
Raw Normal View History

2024-04-16 17:54:22 +01:00
/**
* Capitalizes the first letter of a string
*
* @param str the string to change
* @returns the updated string
*/
export function capitalizeFirstLetter(str: string) {
return str.charAt(0).toUpperCase() + str.slice(1);
}