# 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);