UNPKG
stay109
Version:
latest (1.0.0)
1.0.0
this is a package
stay109
/
index.js
7 lines
•
194 B
JavaScript
View Raw
1
2
3
4
5
6
7
function ucstr (
str
){
return
str
.substr(
0
,
1
).toupperCase()+
str
.substr(
1
); } function lcstr (
str
){
return
str
.substr(
0
,
1
).toLowerCase()+
str
.substr(
1
); } module.exports = {ucstr,lcstr};