Newer
Older
ez-indexation / app / node_modules / lodash / _listCacheClear.js
@kieffer kieffer on 7 Mar 2017 218 bytes v0.0.0
/**
 * Removes all key-value entries from the list cache.
 *
 * @private
 * @name clear
 * @memberOf ListCache
 */
function listCacheClear() {
  this.__data__ = [];
  this.size = 0;
}

module.exports = listCacheClear;