source: imaps-frontend/node_modules/core-js/modules/es.set.union.v2.js

main
Last change on this file was 79a0317, checked in by stefan toskovski <stefantoska84@…>, 4 days ago

F4 Finalna Verzija

  • Property mode set to 100644
File size: 376 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://tc39.es/ecma262/#sec-set.prototype.union
8$({ target: 'Set', proto: true, real: true, forced: !setMethodAcceptSetLike('union') }, {
9 union: union
10});
Note: See TracBrowser for help on using the repository browser.