Files
lodash/npm-package/_listCacheClear.js
Mathias Bynens 2e1c0f22f4 Add npm-package
2020-07-08 19:10:23 +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;