diff --git a/src/Adapters/Cache/LRUCache.js b/src/Adapters/Cache/LRUCache.js index a07d0347eb..f54d8503f9 100644 --- a/src/Adapters/Cache/LRUCache.js +++ b/src/Adapters/Cache/LRUCache.js @@ -18,11 +18,11 @@ export class LRUCache { } del(key) { - this.cache.del(key); + this.cache.delete(key); } clear() { - this.cache.reset(); + this.cache.clear(); } }