astra / web /node_modules /lodash /_listCacheClear.js
Lorenzob's picture
Upload folder using huggingface_hub
19605ab verified
raw
history blame
218 Bytes
/**
* Removes all key-value entries from the list cache.
*
* @private
* @name clear
* @memberOf ListCache
*/
function listCacheClear() {
this.__data__ = [];
this.size = 0;
}
module.exports = listCacheClear;