test-action-debian-package/node_modules/ramda/es/gte.js
Dawid Dziurla 9308795b8b
update
2020-03-26 15:37:35 +01:00

30 lines
608 B
JavaScript

import _curry2 from "./internal/_curry2.js";
/**
* Returns `true` if the first argument is greater 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.lte
* @example
*
* R.gte(2, 1); //=> true
* R.gte(2, 2); //=> true
* R.gte(2, 3); //=> false
* R.gte('a', 'z'); //=> false
* R.gte('z', 'a'); //=> true
*/
var gte =
/*#__PURE__*/
_curry2(function gte(a, b) {
return a >= b;
});
export default gte;