source: imaps-frontend/node_modules/lodash-es/_baseMap.js@ d565449

main
Last change on this file since d565449 was d565449, checked in by stefan toskovski <stefantoska84@…>, 4 weeks ago

Update repo after prototype presentation

  • Property mode set to 100644
File size: 666 bytes
RevLine 
[d565449]1import baseEach from './_baseEach.js';
2import isArrayLike from './isArrayLike.js';
3
4/**
5 * The base implementation of `_.map` without support for iteratee shorthands.
6 *
7 * @private
8 * @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
22export default baseMap;
Note: See TracBrowser for help on using the repository browser.