This website requires JavaScript.
Explore
Help
Sign In
uetchy
/
namae
Watch
1
Star
0
Fork
0
You've already forked namae
mirror of
https://github.com/uetchy/namae.git
synced
2025-03-20 05:50:32 +09:00
Code
Issues
Releases
Activity
namae
/
web
/
src
/
util
/
text.js
4 lines
98 B
JavaScript
Raw
Normal View
History
Unescape
Escape
feat: alternatives
2019-07-31 01:12:51 +09:00
export
function
capitalize
(
text
)
{
fix: lower case the rest
2019-07-31 04:25:08 +09:00
return
text
[
0
]
.
toUpperCase
(
)
+
text
.
slice
(
1
)
.
toLowerCase
(
)
feat: alternatives
2019-07-31 01:12:51 +09:00
}
Copy Permalink