dotfiles/.vscode/extensions/vscodevim.vim-0.2.0/node_modules/lodash/_listCacheClear.js

13 lines
201 B
JavaScript
Raw Normal View History

2016-09-11 09:29:13 +01:00
/**
* Removes all key-value entries from the list cache.
*
* @private
* @name clear
* @memberOf ListCache
*/
function listCacheClear() {
this.__data__ = [];
}
module.exports = listCacheClear;