first
This commit is contained in:
14
node_modules/core-js/modules/esnext.set.union.js
generated
vendored
Normal file
14
node_modules/core-js/modules/esnext.set.union.js
generated
vendored
Normal file
@ -0,0 +1,14 @@
|
||||
'use strict';
|
||||
var $ = require('../internals/export');
|
||||
var call = require('../internals/function-call');
|
||||
var toSetLike = require('../internals/to-set-like');
|
||||
var $union = require('../internals/set-union');
|
||||
|
||||
// `Set.prototype.union` method
|
||||
// https://github.com/tc39/proposal-set-methods
|
||||
// TODO: Obsolete version, remove from `core-js@4`
|
||||
$({ target: 'Set', proto: true, real: true, forced: true }, {
|
||||
union: function union(other) {
|
||||
return call($union, this, toSetLike(other));
|
||||
}
|
||||
});
|
Reference in New Issue
Block a user