Sha256: e83e7e069f743cda3397d56bf30bb6863046b3729730b932f67fd8cb1479b24a
Contents?: true
Size: 393 Bytes
Versions: 276
Compression:
Stored size: 393 Bytes
Contents
var Hash = require('./_Hash'), ListCache = require('./_ListCache'), Map = require('./_Map'); /** * Removes all key-value entries from the map. * * @private * @name clear * @memberOf MapCache */ function mapCacheClear() { this.size = 0; this.__data__ = { 'hash': new Hash, 'map': new (Map || ListCache), 'string': new Hash }; } module.exports = mapCacheClear;
Version data entries
276 entries across 274 versions & 30 rubygems