1
0
Fork 0
arangodb/js/node/node_modules/lodash/_listCacheClear.js

13 lines
201 B
JavaScript

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