install-nix-action/node_modules/lodash/_listCacheClear.js
Domen Kožar 08403cd828
v5
2019-11-13 17:14:48 +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;