scoresaber-reloadedv3/src/common/string-utils.ts
Liam b5df147728
Some checks failed
Deploy SSR / deploy (push) Has been cancelled
add bsr, map and yt buttons to scores
2024-09-11 23:10:16 +01:00

10 lines
238 B
TypeScript

/**
* 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);
}