new_test / node_modules /lodash /_listCacheClear.js
mahiatlinux's picture
Upload 3053 files
311cc15 verified
raw
history blame contribute delete
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;