recode most things - still wip
All checks were successful
Deploy App / docker (ubuntu-latest) (push) Successful in 2m0s

This commit is contained in:
Lee
2024-04-16 17:54:22 +01:00
parent c054a31008
commit 59acc3a7db
13 changed files with 205 additions and 209 deletions

View File

@ -0,0 +1,9 @@
/**
* 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);
}