CoolFace
Datasetpublic

basant307/AI_Governance_Project

sourceHugging Faceapache-2.0updated 2mo agoView on Hugging Face
0likes45downloads
_baseEachRight.js15 linesDownload Raw Back to lodash-es
1import baseForOwnRight from './_baseForOwnRight.js';2import createBaseEach from './_createBaseEach.js';3 4/**5 * The base implementation of `_.forEachRight` without support for iteratee shorthands.6 *7 * @private8 * @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 baseEachRight = createBaseEach(baseForOwnRight, true);13 14export default baseEachRight;15 
basant307/AI_Governance_Project · CoolFace