basant307/AI_Governance_Project
045
1import apply from './_apply.js';2import baseEach from './_baseEach.js';3import baseInvoke from './_baseInvoke.js';4import baseRest from './_baseRest.js';5import isArrayLike from './isArrayLike.js';6 7/**8 * Invokes the method at `path` of each element in `collection`, returning9 * an array of the results of each invoked method. Any additional arguments10 * are provided to each invoked method. If `path` is a function, it's invoked11 * for, and `this` bound to, each element in `collection`.12 *13 * @static14 * @memberOf _15 * @since 4.0.016 * @category Collection17 * @param {Array|Object} collection The collection to iterate over.18 * @param {Array|Function|string} path The path of the method to invoke or19 * the function invoked per iteration.20 * @param {...*} [args] The arguments to invoke each method with.21 * @returns {Array} Returns the array of results.22 * @example23 *24 * _.invokeMap([[5, 1, 7], [3, 2, 1]], 'sort');25 * // => [[1, 5, 7], [1, 2, 3]]26 *27 * _.invokeMap([123, 456], String.prototype.split, '');28 * // => [['1', '2', '3'], ['4', '5', '6']]29 */30var invokeMap = baseRest(function(collection, path, args) {31 var index = -1,32 isFunc = typeof path == 'function',33 result = isArrayLike(collection) ? Array(collection.length) : [];34 35 baseEach(collection, function(value) {36 result[++index] = isFunc ? apply(path, value, args) : baseInvoke(value, path, args);37 });38 return result;39});40 41export default invokeMap;42 