Graduation / ui /node_modules /lodash /_listCacheClear.js
DuyTa's picture
Upload folder using huggingface_hub
bc20498 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;