Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download
80742 views
1
var baseForOwnRight = require('./baseForOwnRight'),
2
createBaseEach = require('./createBaseEach');
3
4
/**
5
* The base implementation of `_.forEachRight` without support for callback
6
* shorthands and `this` binding.
7
*
8
* @private
9
* @param {Array|Object|string} collection The collection to iterate over.
10
* @param {Function} iteratee The function invoked per iteration.
11
* @returns {Array|Object|string} Returns `collection`.
12
*/
13
var baseEachRight = createBaseEach(baseForOwnRight, true);
14
15
module.exports = baseEachRight;
16
17