scoresaber-reloadedv3/src/common/string-utils.ts

10 lines
238 B
TypeScript
Raw Normal View History

2024-09-11 20:26:24 +00:00
/**
* Capitalizes the first letter of a string.
*
* @param str the string to capitalize
* @returns the capitalized string
*/
export function capitalizeFirstLetter(str: string) {
return str.charAt(0).toUpperCase() + str.slice(1);
}