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