Added funcs file for random functions
This commit is contained in:
3
src/utils/functions/funcs.ts
Normal file
3
src/utils/functions/funcs.ts
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
export function capitalizeFirstLetter(str: string): string {
|
||||||
|
return str[0].toUpperCase() + str.slice(1).toLowerCase()
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user