From 726b81b19251674e149ccfbb1abacbd837fc6db0 Mon Sep 17 00:00:00 2001 From: LinuxWizard42 Date: Wed, 12 Oct 2022 23:08:57 +0300 Subject: Removed files that should not have been included in git --- node_modules/lodash/lte.js | 30 ------------------------------ 1 file changed, 30 deletions(-) delete mode 100644 node_modules/lodash/lte.js (limited to 'node_modules/lodash/lte.js') diff --git a/node_modules/lodash/lte.js b/node_modules/lodash/lte.js deleted file mode 100644 index 382f661..0000000 --- a/node_modules/lodash/lte.js +++ /dev/null @@ -1,30 +0,0 @@ -var createRelationalOperation = require('./_createRelationalOperation'); - -/** - * Checks if `value` is less than or equal to `other`. - * - * @static - * @memberOf _ - * @since 3.9.0 - * @category Lang - * @param {*} value The value to compare. - * @param {*} other The other value to compare. - * @returns {boolean} Returns `true` if `value` is less than or equal to - * `other`, else `false`. - * @see _.gte - * @example - * - * _.lte(1, 3); - * // => true - * - * _.lte(3, 3); - * // => true - * - * _.lte(3, 1); - * // => false - */ -var lte = createRelationalOperation(function(value, other) { - return value <= other; -}); - -module.exports = lte; -- cgit v1.2.3-86-g962b