38465-vm/bot/node_modules/lodash/_listCacheClear.js
Flatlogic Bot 33b1653816 V3
2026-02-16 03:42:10 +00:00

14 lines
218 B
JavaScript

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