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    
@skava/modules / ___dist / chain-able / src / deps / loop / flattenForIn.js
Size: Mime:
"use strict";

const forInUnguarded = require("./each/forInUnguarded");
/**
 * @desc copies forInUnguarded
 * @since 5.0.0-beta.6
 * @name flattenForIn
 * @alias flattenProto
 * @alias flattenPrototype
 * @param {Object} x copy proto to self
 * @return {number}
 */


module.exports = x => forInUnguarded(x, (value, key) => {
  x[key] = value;
});