30 lines
605 B
JavaScript
30 lines
605 B
JavaScript
|
import _curry2 from "./internal/_curry2.js";
|
||
|
/**
|
||
|
* Returns `true` if the first argument is less than or equal to the second;
|
||
|
* `false` otherwise.
|
||
|
*
|
||
|
* @func
|
||
|
* @memberOf R
|
||
|
* @since v0.1.0
|
||
|
* @category Relation
|
||
|
* @sig Ord a => a -> a -> Boolean
|
||
|
* @param {Number} a
|
||
|
* @param {Number} b
|
||
|
* @return {Boolean}
|
||
|
* @see R.gte
|
||
|
* @example
|
||
|
*
|
||
|
* R.lte(2, 1); //=> false
|
||
|
* R.lte(2, 2); //=> true
|
||
|
* R.lte(2, 3); //=> true
|
||
|
* R.lte('a', 'z'); //=> true
|
||
|
* R.lte('z', 'a'); //=> false
|
||
|
*/
|
||
|
|
||
|
var lte =
|
||
|
/*#__PURE__*/
|
||
|
_curry2(function lte(a, b) {
|
||
|
return a <= b;
|
||
|
});
|
||
|
|
||
|
export default lte;
|