Files
setup-ruby/node_modules/lodash/_listCacheClear.js
Stephen Franceschelli e3283467a1 Fix bug. Add workflows.
2019-07-15 13:23:24 -04: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;