index
:
voidsky
this commit
main
[no description]
Vika
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
src
/
lib
/
strings
/
capitalize.ts
blob: a3415bd006f58bcf1a42b06d6b9ee7176d193398 (
plain
) (
blame
)
1
2
3
export
function
capitalize
(
str
:
string
)
{
return
str
.
charAt
(
0
).
toUpperCase
()
+
str
.
slice
(
1
)
}