source: imaps-frontend/node_modules/lodash/_baseEach.js@ 79a0317

main
Last change on this file since 79a0317 was 79a0317, checked in by stefan toskovski <stefantoska84@…>, 3 days ago

F4 Finalna Verzija

  • Property mode set to 100644
File size: 455 bytes
RevLine 
[79a0317]1var baseForOwn = require('./_baseForOwn'),
2 createBaseEach = require('./_createBaseEach');
3
4/**
5 * The base implementation of `_.forEach` 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|Object} Returns `collection`.
11 */
12var baseEach = createBaseEach(baseForOwn);
13
14module.exports = baseEach;
Note: See TracBrowser for help on using the repository browser.