Add capitalize function (#2651)
This commit is contained in:
parent
769960f29e
commit
c6ff6939a5
2 changed files with 6 additions and 1 deletions
3
src/prelude/string.ts
Normal file
3
src/prelude/string.ts
Normal file
|
@ -0,0 +1,3 @@
|
|||
export function capitalize(s: string): string {
|
||||
return s.charAt(0).toUpperCase() + s.slice(1).toLowerCase();
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue