.gitignore added
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / core-js / modules / esnext.weak-set.add-all.js
1 'use strict';
2 var $ = require('../internals/export');
3 var IS_PURE = require('../internals/is-pure');
4 var collectionAddAll = require('../internals/collection-add-all');
5
6 // `WeakSet.prototype.addAll` method
7 // https://github.com/tc39/proposal-collection-methods
8 $({ target: 'WeakSet', proto: true, real: true, forced: IS_PURE }, {
9   addAll: function addAll(/* ...elements */) {
10     return collectionAddAll.apply(this, arguments);
11   }
12 });