system-prompts-and-models-o.../unified-ai-platform/node_modules/lodash/_listCacheClear.js
dopeuni444 ae726301f8 KI
KJ
2025-08-06 11:08:49 +04: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;