f0520a8b4f0ed921efd1d7eaefcead7cc607c188
[platform/framework/web/crosswalk-tizen.git] /
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;