Sha256: 0872c1fc38da972860c5d7e9b029d60556a1132343e9c151b9446002cf5f3c35
Contents?: true
Size: 218 Bytes
Versions: 276
Compression:
Stored size: 218 Bytes
Contents
/** * Removes all key-value entries from the list cache. * * @private * @name clear * @memberOf ListCache */ function listCacheClear() { this.__data__ = []; this.size = 0; } module.exports = listCacheClear;
Version data entries
276 entries across 274 versions & 30 rubygems