Sha256: 1582f5cf9fa8b80d773e6a9cf795186414998643f26e512fd9b0f798b2e3696d
Contents?: true
Size: 493 Bytes
Versions: 153
Compression:
Stored size: 493 Bytes
Contents
/** * 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;
Version data entries
153 entries across 80 versions & 8 rubygems