diff --git a/src/utils/functions/funcs.ts b/src/utils/functions/funcs.ts new file mode 100644 index 0000000..6ee9938 --- /dev/null +++ b/src/utils/functions/funcs.ts @@ -0,0 +1,3 @@ +export function capitalizeFirstLetter(str: string): string { + return str[0].toUpperCase() + str.slice(1).toLowerCase() +} \ No newline at end of file