swc/crates/swc_bundler/tests/.cache/deno/be9d6583508483a1faa9fbe4a0b21da60f6679da.ts
2021-11-09 20:42:49 +09:00

24 lines
480 B
TypeScript

// Loaded from https://deno.land/x/ramda@v0.27.2/source/toUpper.js
import invoker from './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 = invoker(0, 'toUpperCase');
export default toUpper;