5836da37ae44bbdb9288d63bed501b853a3b3ad2bdf3a0cc0bf02eb79867f0d7.json 749 B

1
  1. {"ast":null,"code":"import createRelationalOperation from './_createRelationalOperation.js';\n\n/**\n * Checks if `value` is less 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 less than or equal to\n * `other`, else `false`.\n * @see _.gte\n * @example\n *\n * _.lte(1, 3);\n * // => true\n *\n * _.lte(3, 3);\n * // => true\n *\n * _.lte(3, 1);\n * // => false\n */\nvar lte = createRelationalOperation(function (value, other) {\n return value <= other;\n});\nexport default lte;","map":null,"metadata":{},"sourceType":"module","externalDependencies":[]}