UNPKG

625 BJavaScriptView Raw
1var _curry2 =
2/*#__PURE__*/
3require("./internal/_curry2");
4/**
5 * Returns `true` if the first argument is greater than or equal to the second;
6 * `false` otherwise.
7 *
8 * @func
9 * @memberOf R
10 * @since v0.1.0
11 * @category Relation
12 * @sig Ord a => a -> a -> Boolean
13 * @param {Number} a
14 * @param {Number} b
15 * @return {Boolean}
16 * @see R.lte
17 * @example
18 *
19 * R.gte(2, 1); //=> true
20 * R.gte(2, 2); //=> true
21 * R.gte(2, 3); //=> false
22 * R.gte('a', 'z'); //=> false
23 * R.gte('z', 'a'); //=> true
24 */
25
26
27var gte =
28/*#__PURE__*/
29_curry2(function gte(a, b) {
30 return a >= b;
31});
32
33module.exports = gte;
\No newline at end of file