CoolFace
Datasetpublic

basant307/AI_Governance_Project

sourceHugging Faceapache-2.0updated 2mo agoView on Hugging Face
0likes45downloads
_baseMap.js23 linesDownload Raw Back to lodash
1var baseEach = require('./_baseEach'),2    isArrayLike = require('./isArrayLike');3 4/**5 * The base implementation of `_.map` without support for iteratee shorthands.6 *7 * @private8 * @param {Array|Object} collection The collection to iterate over.9 * @param {Function} iteratee The function invoked per iteration.10 * @returns {Array} Returns the new mapped array.11 */12function baseMap(collection, iteratee) {13  var index = -1,14      result = isArrayLike(collection) ? Array(collection.length) : [];15 16  baseEach(collection, function(value, key, collection) {17    result[++index] = iteratee(value, key, collection);18  });19  return result;20}21 22module.exports = baseMap;23 
basant307/AI_Governance_Project · CoolFace