Files
setup-haskell/node_modules/lodash/_listCacheClear.js
Timothy Clem 63b90beb0c npm audit fix
2019-09-30 10:04:01 -07:00

14 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;