install-nix-action/node_modules/lodash/_listCacheClear.js
Domen Kožar 49df04613e
v7
2020-02-24 13:29:22 +01:00

13 lines
218 B
JavaScript

/**
* Removes all key-value entries from the list cache.
*
* @private
* @name clear
* @memberOf ListCache
*/
function listCacheClear() {
this.__data__ = [];
this.size = 0;
}
module.exports = listCacheClear;