uppercase.js 104 B

12345
  1. function toUppercase(inputString) {
  2. return inputString.toUpperCase();
  3. }
  4. module.exports = toUppercase;