blob: 3d955ba48e7b311ef23c53917908c50c329c2426 [file] [log] [blame] [edit]
var invoker =
/*#__PURE__*/
require("./invoker");
/**
* The upper case version of a string.
*
* @func
* @memberOf R
* @since v0.9.0
* @category String
* @sig String -> String
* @param {String} str The string to upper case.
* @return {String} The upper case version of `str`.
* @see R.toLower
* @example
*
* R.toUpper('abc'); //=> 'ABC'
*/
var toUpper =
/*#__PURE__*/
invoker(0, 'toUpperCase');
module.exports = toUpper;