Can create inbox entries

This commit is contained in:
2025-05-10 18:37:51 +02:00
parent cceed381bd
commit 0b586039c3
8 changed files with 240 additions and 32 deletions

View File

@@ -0,0 +1,7 @@
/**
* Make the first letter of a word uppercase
*/
export function firstLetterUppercase(s: string): string {
if (s.length === 0) return s;
return s.charAt(0).toUpperCase() + s.slice(1);
}