e8cb9a3e01e2c05a9416a79ac80ed18390ac2e3f
[yaffs-website] / node_modules / uncss / node_modules / lodash / internal / baseEachRight.js
1 var baseForOwnRight = require('./baseForOwnRight'),
2     createBaseEach = require('./createBaseEach');
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 module.exports = baseEachRight;