From 6555fb80fdd8f6a5d201efadec3189d1244830a0 Mon Sep 17 00:00:00 2001 From: Nevena Bojovic Date: Tue, 1 Mar 2022 22:05:25 +0100 Subject: Izbrisala bin, obj i node-modules. --- .../testAppNevena/Front/node_modules/lodash/gt.js | 29 ---------------------- 1 file changed, 29 deletions(-) delete mode 100644 sandbox/testAppNevena/Front/node_modules/lodash/gt.js (limited to 'sandbox/testAppNevena/Front/node_modules/lodash/gt.js') diff --git a/sandbox/testAppNevena/Front/node_modules/lodash/gt.js b/sandbox/testAppNevena/Front/node_modules/lodash/gt.js deleted file mode 100644 index 3a662828..00000000 --- a/sandbox/testAppNevena/Front/node_modules/lodash/gt.js +++ /dev/null @@ -1,29 +0,0 @@ -var baseGt = require('./_baseGt'), - createRelationalOperation = require('./_createRelationalOperation'); - -/** - * Checks if `value` is greater than `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 greater than `other`, - * else `false`. - * @see _.lt - * @example - * - * _.gt(3, 1); - * // => true - * - * _.gt(3, 3); - * // => false - * - * _.gt(1, 3); - * // => false - */ -var gt = createRelationalOperation(baseGt); - -module.exports = gt; -- cgit v1.2.3