UNPKG
upcase
Version:
latest (1.0.1)
1.0.1
1.0.0
Uppercases input
github.com/mnemr/uppercase
mnemr/uppercase
upcase
/
README.md
10 lines
(7 loc)
•
235 B
Markdown
View Raw
1
2
3
4
5
6
7
8
9
10
# UpperCase.js
UpperCase
is
a module which returns the provided arguments
in
and
upper
case
format.
# Usage
var
stingFun = require(
'./index.js'
)
var
str =
"hello world"
;
var
strUpper = stingFun.upperCase(str); console.log(strUpper);