/
githubmirror
/
lodash
Обзор
Документация
Войти
/
githubmirror
/
lodash
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
4.18.0-amd
_baseEachRight.js
14 строк
497 B
John-David Dalton
Bump to v4.1.0.
29 янв 2016, 12:14
29 янв 2016, 12:14
7293d39
Код
Авторство
О чём код?
define(['./_baseForOwnRight', './_createBaseEach'], function(baseForOwnRight, createBaseEach) { /** * The base implementation of `_.forEachRight` without support for iteratee shorthands. * * @private * @param {Array|Object} collection The collection to iterate over. * @param {Function} iteratee The function invoked per iteration. * @returns {Array|Object} Returns `collection`. */ var baseEachRight = createBaseEach(baseForOwnRight, true); return baseEachRight; });