CoolFace
Datasetpublic

basant307/AI_Governance_Project

sourceHugging Faceapache-2.0updated 2mo agoView on Hugging Face
0likes45downloads
_baseForOwn.js17 linesDownload Raw Back to lodash
1var baseFor = require('./_baseFor'),2    keys = require('./keys');3 4/**5 * The base implementation of `_.forOwn` without support for iteratee shorthands.6 *7 * @private8 * @param {Object} object The object to iterate over.9 * @param {Function} iteratee The function invoked per iteration.10 * @returns {Object} Returns `object`.11 */12function baseForOwn(object, iteratee) {13  return object && baseFor(object, iteratee, keys);14}15 16module.exports = baseForOwn;17 
basant307/AI_Governance_Project · CoolFace