1
0
mirror of https://github.com/thangisme/notes.git synced 2024-09-27 22:56:13 -04:00
notes/node_modules/lodash/_listCacheClear.js

14 lines
218 B
JavaScript
Raw Normal View History

2017-03-09 13:16:08 -05:00
/**
* Removes all key-value entries from the list cache.
*
* @private
* @name clear
* @memberOf ListCache
*/
function listCacheClear() {
this.__data__ = [];
this.size = 0;
}
module.exports = listCacheClear;