UNPKG

upcase

Version:
10 lines (7 loc) 235 B
# 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);