Sign in
cobalt
/
cobalt
/
25902c6cb1ab9cfd8ae2ee6b0fb52953f73deda5
/
.
/
third_party
/
devtools
/
node_modules
/
lodash
/
_listCacheClear.js
blob: acbe39a597cf48078399c9e0b7218f21f402721d [
file
] [
log
] [
blame
]
/**
* Removes all key-value entries from the list cache.
*
* @private
* @name clear
* @memberOf ListCache
*/
function
listCacheClear
()
{
this
.
__data__
=
[];
this
.
size
=
0
;
}
module
.
exports
=
listCacheClear
;