/
Dangerpro
/
Math_Modeling_Knyaginin
Обзор
Документация
Войти
/
Dangerpro
/
Math_Modeling_Knyaginin
Код
Запросы
0
Задачи
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
node_modules/lodash/_baseForOwn.js
16 строк
456 B
Dangerpro
Создал бота
02 дек 2024, 14:16
02 дек 2024, 14:16
6f458d6
Код
Авторство
О чём код?
var baseFor = require('./_baseFor'), keys = require('./keys'); /** * The base implementation of `_.forOwn` 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 baseForOwn(object, iteratee) { return object && baseFor(object, iteratee, keys); } module.exports = baseForOwn;