upcase

Uppercases input

Usage no npm install needed!

<script type="module">
  import upcase from 'https://cdn.skypack.dev/upcase';
</script>

README

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