@aws/pdk
Version:
All documentation is located at: https://aws.github.io/aws-pdk
24 lines (22 loc) • 443 B
JavaScript
var invoker =
/*#__PURE__*/
require("./invoker.js");
/**
* 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;