Skip to main content
Module

x/lodash/npm-package/_listCacheClear.js

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