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. --- .../Front/node_modules/lodash/findLast.js | 25 ---------------------- 1 file changed, 25 deletions(-) delete mode 100644 sandbox/testAppNevena/Front/node_modules/lodash/findLast.js (limited to 'sandbox/testAppNevena/Front/node_modules/lodash/findLast.js') diff --git a/sandbox/testAppNevena/Front/node_modules/lodash/findLast.js b/sandbox/testAppNevena/Front/node_modules/lodash/findLast.js deleted file mode 100644 index 70b4271d..00000000 --- a/sandbox/testAppNevena/Front/node_modules/lodash/findLast.js +++ /dev/null @@ -1,25 +0,0 @@ -var createFind = require('./_createFind'), - findLastIndex = require('./findLastIndex'); - -/** - * This method is like `_.find` except that it iterates over elements of - * `collection` from right to left. - * - * @static - * @memberOf _ - * @since 2.0.0 - * @category Collection - * @param {Array|Object} collection The collection to inspect. - * @param {Function} [predicate=_.identity] The function invoked per iteration. - * @param {number} [fromIndex=collection.length-1] The index to search from. - * @returns {*} Returns the matched element, else `undefined`. - * @example - * - * _.findLast([1, 2, 3, 4], function(n) { - * return n % 2 == 1; - * }); - * // => 3 - */ -var findLast = createFind(findLastIndex); - -module.exports = findLast; -- cgit v1.2.3