UNPKG
@amberjs/cli
Version:
latest (0.0.4)
0.0.4
0.0.3
0.0.2
0.0.1
Amber.js command line interface
@amberjs/cli
/
src
/
utils
/
string-manipulation.js
5 lines
(3 loc)
•
196 B
JavaScript
View Raw
1
2
3
4
5
const
firstToUpper
= (
str
) => str.
replace
(
/^./
,
(
f
) =>
f.
toUpperCase
());
const
firstToLower
= (
str
) => str.
replace
(
/^./
,
(
f
) =>
f.
toLowerCase
());
module
.
exports
= { firstToLower, firstToUpper };