mirror of
https://github.com/Dan6erbond/sk-auth.git
synced 2025-08-03 13:48:09 +02:00
✨ Add ucFirst
helper
This commit is contained in:
parent
39c9793a78
commit
941b87d468
3
src/helpers.ts
Normal file
3
src/helpers.ts
Normal file
@ -0,0 +1,3 @@
|
||||
export function ucFirst(val: string) {
|
||||
return val.charAt(0).toUpperCase() + val.slice(1);
|
||||
}
|
Loading…
Reference in New Issue
Block a user