esnext.weak-set.add-all.js 291 B

123456789
  1. 'use strict';
  2. var $ = require('../internals/export');
  3. var addAll = require('../internals/collection-add-all');
  4. // `WeakSet.prototype.addAll` method
  5. // https://github.com/tc39/proposal-collection-methods
  6. $({ target: 'WeakSet', proto: true, real: true, forced: true }, {
  7. addAll: addAll
  8. });