This commit is contained in:
Simon Priet
2021-09-05 22:53:58 +02:00
commit 9e2991e668
17888 changed files with 1263126 additions and 0 deletions

21
node_modules/ramda/es/toLower.js generated vendored Normal file
View File

@@ -0,0 +1,21 @@
import invoker from "./invoker.js";
/**
* The lower case version of a string.
*
* @func
* @memberOf R
* @since v0.9.0
* @category String
* @sig String -> String
* @param {String} str The string to lower case.
* @return {String} The lower case version of `str`.
* @see R.toUpper
* @example
*
* R.toLower('XYZ'); //=> 'xyz'
*/
var toLower =
/*#__PURE__*/
invoker(0, 'toLowerCase');
export default toLower;