3342ea3d47f9769023db326c58d5c35d6b63d60d6f35ed96268a2952be0b3871.json 755 B

1
  1. {"ast":null,"code":"import createRelationalOperation from './_createRelationalOperation.js';\n\n/**\n * Checks if `value` is greater than or equal to `other`.\n *\n * @static\n * @memberOf _\n * @since 3.9.0\n * @category Lang\n * @param {*} value The value to compare.\n * @param {*} other The other value to compare.\n * @returns {boolean} Returns `true` if `value` is greater than or equal to\n * `other`, else `false`.\n * @see _.lte\n * @example\n *\n * _.gte(3, 1);\n * // => true\n *\n * _.gte(3, 3);\n * // => true\n *\n * _.gte(1, 3);\n * // => false\n */\nvar gte = createRelationalOperation(function (value, other) {\n return value >= other;\n});\nexport default gte;","map":null,"metadata":{},"sourceType":"module","externalDependencies":[]}