mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-04 10:59:31 +08:00
13 lines
218 B
Text
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;
|