Sha256: 3b4f724f707fab4e211f03700a774dc0bd625f8cf23cbc2709f6d260af4217c4
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'); // `WeakMap.prototype.deleteAll` method // https://github.com/tc39/proposal-collection-methods $({ target: 'WeakMap', 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