Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
chain-able-deps / dist / typings / loop / each / baseForOwn.d.ts
Size: Mime:
import { BaseForIteratee } from './baseFor';
/**
 * The base implementation of `forOwn`.
 *
 * @private
 * @param object The object to iterate over.
 * @param iteratee The function invoked per iteration.
 * @return Returns `object`.
 *
 * @see https://github.com/lodash/lodash/blob/master/.internal/baseForOwn.js
 */
declare function baseForOwn<Obj = {
    [key: string]: any;
}, KeyReturn = any>(object: Obj, iteratee: BaseForIteratee<Obj, KeyReturn>): Obj;
export default baseForOwn;