UNPKG
@caeser1996/titlecase
Version:
latest (3.0.2)
3.0.2
3.0.1
3.0.0
2.0.0
1.0.0
Make your string Title case
github.com/caeser1996/titlecase
caeser1996/titlecase
@caeser1996/titlecase
/
index.js
8 lines
•
211 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
module
.
exports
=
function
to_title
(
string
) {
return
string.
replace
(
/\w\S*/g
,
function
(
txt
) {
return
txt.
charAt
(
0
).
toUpperCase
() + txt.
substr
(
1
).
toLowerCase
(); } ); };