source: node_modules/core-js-pure/modules/esnext.set.union.v2.js

main
Last change on this file was d24f17c, checked in by Aleksandar Panovski <apano77@…>, 15 months ago

Initial commit

  • Property mode set to 100644
File size: 372 bytes
Line 
1'use strict';
2var $ = require('../internals/export');
3var union = require('../internals/set-union');
4var setMethodAcceptSetLike = require('../internals/set-method-accept-set-like');
5
6// `Set.prototype.union` method
7// https://github.com/tc39/proposal-set-methods
8$({ target: 'Set', proto: true, real: true, forced: !setMethodAcceptSetLike('union') }, {
9 union: union
10});
Note: See TracBrowser for help on using the repository browser.