UNPKG
stringutils
Version:
latest (0.0.1)
0.0.1
A collection of string manipulation utils
romansky/StringUtils
stringutils
/
index.js
9 lines
(6 loc)
•
170 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
// Generated by CoffeeScript 1.3.3
(
function
(
) {
exports
.
capitalize
=
function
(
aString
) {
return
aString[
0
].
toUpperCase
() + aString.
slice
(
1
); }; }).
call
(
this
);