Can create inbox entries
This commit is contained in:
7
moneymgr_web/src/utils/StringUtils.tsx
Normal file
7
moneymgr_web/src/utils/StringUtils.tsx
Normal 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);
|
||||
}
|
Reference in New Issue
Block a user