Uppercases input
npm install upcase
UpperCase is a module which returns the provided arguments in and upper case format.
var stingFun = require('./index.js')var str = "hello world";var strUpper = stingFun.upperCase(str);console.log(strUpper);