UNPKG

core-js

Version:
11 lines (9 loc) 395 B
'use strict'; var collectionAddAll = require('../internals/collection-add-all'); // `Set.prototype.addAll` method // https://github.com/tc39/proposal-collection-methods require('../internals/export')({ target: 'Set', proto: true, real: true, forced: require('../internals/is-pure') }, { addAll: function addAll(/* ...elements */) { return collectionAddAll.apply(this, arguments); } });