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