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 / loop / each / baseForOwn.js
Size: Mime:
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
var keys_1 = require("../../util/keys");
var baseFor_1 = require("./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
 */
function baseForOwn(object, iteratee) {
    return object && baseFor_1.default(object, iteratee, keys_1.default);
}
exports.default = baseForOwn;
//# sourceMappingURL=baseForOwn.js.map