Urara-Blog/node_modules/.pnpm-store/v3/files/ab/ae3b468fa25822b9ef760bd58ba68b60aae9c44812455bcecae792c481137a9a7123081f65e596ab0b64fd942b449f955d8672334a9b5ae8024114882099b8
2022-08-14 01:14:53 +08:00

13 lines
218 B
Text

/**
* Removes all key-value entries from the list cache.
*
* @private
* @name clear
* @memberOf ListCache
*/
function listCacheClear() {
this.__data__ = [];
this.size = 0;
}
module.exports = listCacheClear;