UNPKG
chatbotlouis
Version:
latest (1.0.0)
1.0.0
chat
chatbotlouis
/
functions
/
capitalize.js
9 lines
(6 loc)
•
261 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
function
Capitalize
(
options = {}
) {
if
(!options.
Capital
)
throw
new
Error
(
`No text provided to capitalize`
);
const
capital = options.
Capital
.
charAt
(
0
).
toUpperCase
() + options.
Capital
.
slice
(
1
);
return
capital; }
module
.
exports
=
Capitalize
;