| | |
| | | 'use strict'; |
| | | var $ = require('../internals/export'); |
| | | var IS_PURE = require('../internals/is-pure'); |
| | | var getBuiltIn = require('../internals/get-built-in'); |
| | | var aCallable = require('../internals/a-callable'); |
| | | var anObject = require('../internals/an-object'); |
| | |
| | | |
| | | // `Set.prototype.union` method |
| | | // https://github.com/tc39/proposal-set-methods |
| | | $({ target: 'Set', proto: true, real: true, forced: IS_PURE }, { |
| | | $({ target: 'Set', proto: true, real: true, forced: true }, { |
| | | union: function union(iterable) { |
| | | var set = anObject(this); |
| | | var newSet = new (speciesConstructor(set, getBuiltIn('Set')))(set); |