| var _curry2 = |
| /*#__PURE__*/ |
| require("./internal/_curry2"); |
| /** |
| * 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; |
| }); |
| |
| module.exports = lte; |