/** * @module 1-liners/toUpperCase * * @description * * Same as `'str'.toUpperCase()`. * * @example * * const toUpperCase = require('1-liners/toUpperCase'); * * toUpperCase('hallo') // => 'HALLO' * */ "use strict"; exports.__esModule = true; exports["default"] = function (str) { return str.toUpperCase(); }; module.exports = exports["default"];