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