Newer
Older
alert / js / node_modules / lodash / _listCacheClear.js
@Réz István Réz István on 18 Nov 2021 218 bytes first commit
/**
 * Removes all key-value entries from the list cache.
 *
 * @private
 * @name clear
 * @memberOf ListCache
 */
function listCacheClear() {
  this.__data__ = [];
  this.size = 0;
}

module.exports = listCacheClear;