UNPKG

cione-comp-lib

Version:

`$ yarn add cione-comp-lib` 或者 `$ npm i cione-comp-lib -S`

13 lines (12 loc) 298 B
import Hash from "./_Hash.mjs"; import ListCache from "./_ListCache.mjs"; import Map from "./_Map.mjs"; function mapCacheClear() { this.size = 0; this.__data__ = { "hash": new Hash(), "map": new (Map || ListCache)(), "string": new Hash() }; } export { mapCacheClear as default };