action-debian-package/node_modules/ramda/es/toLower.js

21 lines
423 B
JavaScript
Raw Normal View History

2020-03-26 14:37:35 +00:00
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;