Files
Web-Printing-Toolkit/node_modules/lodash/_listCacheClear.js
TheGreydiamond 7b45a854fe inital commit
2025-08-18 20:02:43 +02: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;