26 lines
493 B
JavaScript
26 lines
493 B
JavaScript
|
/**
|
||
|
* Checks if `value` is greater than or equal to `other`.
|
||
|
*
|
||
|
* @static
|
||
|
* @memberOf _
|
||
|
* @category Lang
|
||
|
* @param {*} value The value to compare.
|
||
|
* @param {*} other The other value to compare.
|
||
|
* @returns {boolean} Returns `true` if `value` is greater than or equal to `other`, else `false`.
|
||
|
* @example
|
||
|
*
|
||
|
* _.gte(3, 1);
|
||
|
* // => true
|
||
|
*
|
||
|
* _.gte(3, 3);
|
||
|
* // => true
|
||
|
*
|
||
|
* _.gte(1, 3);
|
||
|
* // => false
|
||
|
*/
|
||
|
function gte(value, other) {
|
||
|
return value >= other;
|
||
|
}
|
||
|
|
||
|
module.exports = gte;
|