source: trip-planner-front/node_modules/core-js/modules/esnext.set.add-all.js@ 8d391a1

Last change on this file since 8d391a1 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 429 bytes
Line 
1'use strict';
2var $ = require('../internals/export');
3var IS_PURE = require('../internals/is-pure');
4var collectionAddAll = require('../internals/collection-add-all');
5
6// `Set.prototype.addAll` method
7// https://github.com/tc39/proposal-collection-methods
8$({ target: 'Set', proto: true, real: true, forced: IS_PURE }, {
9 addAll: function addAll(/* ...elements */) {
10 return collectionAddAll.apply(this, arguments);
11 }
12});
Note: See TracBrowser for help on using the repository browser.