Sha256: 1aabecdd2d47a114ec2fc202d5e618131349e5c104c35bb4028c07b450949128
Contents?: true
Size: 447 Bytes
Versions: 36
Compression:
Stored size: 447 Bytes
Contents
'use strict'; var $ = require('../internals/export'); var IS_PURE = require('../internals/is-pure'); var collectionDeleteAll = require('../internals/collection-delete-all'); // `Set.prototype.deleteAll` method // https://github.com/tc39/proposal-collection-methods $({ target: 'Set', 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