Urara-Blog/node_modules/.pnpm-store/v3/files/50/c2ba1f00ea760c542672c39099f49cbcd587fc16070bd7dbbabe6bfd002963861845895b419baa3bcf26c303a98819cf9abad1c91d6940f6658e65735e65b5
2022-08-14 01:14:53 +08:00

16 lines
456 B
Text

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;