UNPKG

functionfoundry

Version:
13 lines (11 loc) 269 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = upper; // Copyright 2015 JC Fisher // UPPER converts a string to upper case function upper(string) { return string.toUpperCase(); } module.exports = exports["default"];