UNPKG

@newdash/newdash

Version:

javascript/typescript utility library

11 lines (10 loc) 316 B
export default baseForOwn; /** * The base implementation of `forOwn`. * * @private * @param {Object} object The object to iterate over. * @param {Function} iteratee The function invoked per iteration. * @returns {Object} Returns `object`. */ declare function baseForOwn(object: any, iteratee: Function): any;