Skip to main content
Module

x/lodash/_listCacheClear.js

A modern JavaScript utility library delivering modularity, performance, & extras.
Extremely Popular
Go to Latest
File
/** * Removes all key-value entries from the list cache. * * @private * @name clear * @memberOf ListCache */function listCacheClear() { this.__data__ = []; this.size = 0;}
export default listCacheClear;