Sha256: 485c4eddb09b625d7cbd6ea12c5cc45f379714b067e53b3fa99e2860c749ec56
Contents?: true
Size: 437 Bytes
Versions: 36
Compression:
Stored size: 437 Bytes
Contents
'use strict'; var $ = require('../internals/export'); var IS_PURE = require('../internals/is-pure'); var collectionAddAll = require('../internals/collection-add-all'); // `WeakSet.prototype.addAll` method // https://github.com/tc39/proposal-collection-methods $({ target: 'WeakSet', proto: true, real: true, forced: IS_PURE }, { addAll: function addAll(/* ...elements */) { return collectionAddAll.apply(this, arguments); } });
Version data entries
36 entries across 35 versions & 9 rubygems