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/flatMap.js | 29 ---------------------- 1 file changed, 29 deletions(-) delete mode 100644 sandbox/testAppNevena/Front/node_modules/lodash/flatMap.js (limited to 'sandbox/testAppNevena/Front/node_modules/lodash/flatMap.js') diff --git a/sandbox/testAppNevena/Front/node_modules/lodash/flatMap.js b/sandbox/testAppNevena/Front/node_modules/lodash/flatMap.js deleted file mode 100644 index e6685068..00000000 --- a/sandbox/testAppNevena/Front/node_modules/lodash/flatMap.js +++ /dev/null @@ -1,29 +0,0 @@ -var baseFlatten = require('./_baseFlatten'), - map = require('./map'); - -/** - * Creates a flattened array of values by running each element in `collection` - * thru `iteratee` and flattening the mapped results. The iteratee is invoked - * with three arguments: (value, index|key, collection). - * - * @static - * @memberOf _ - * @since 4.0.0 - * @category Collection - * @param {Array|Object} collection The collection to iterate over. - * @param {Function} [iteratee=_.identity] The function invoked per iteration. - * @returns {Array} Returns the new flattened array. - * @example - * - * function duplicate(n) { - * return [n, n]; - * } - * - * _.flatMap([1, 2], duplicate); - * // => [1, 1, 2, 2] - */ -function flatMap(collection, iteratee) { - return baseFlatten(map(collection, iteratee), 1); -} - -module.exports = flatMap; -- cgit v1.2.3