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:
489 bytes
|
Rev | Line | |
---|
[d565449] | 1 | import baseForOwnRight from './_baseForOwnRight.js';
|
---|
| 2 | import createBaseEach from './_createBaseEach.js';
|
---|
| 3 |
|
---|
| 4 | /**
|
---|
| 5 | * The base implementation of `_.forEachRight` 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 | */
|
---|
| 12 | var baseEachRight = createBaseEach(baseForOwnRight, true);
|
---|
| 13 |
|
---|
| 14 | export default baseEachRight;
|
---|
Note:
See
TracBrowser
for help on using the repository browser.