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    
@doodle/i18n / dist / cjs / node_modules / lodash / _baseForOwn.js
Size: Mime:
'use strict';

Object.defineProperty(exports, '__esModule', { value: true });

var keys = require('./keys.js');
var _baseFor = require('./_baseFor.js');

/**
 * 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.default(object, iteratee, keys.default);
}

var _baseForOwn = baseForOwn;

exports.__moduleExports = _baseForOwn;
exports.default = _baseForOwn;
//# sourceMappingURL=_baseForOwn.js.map