diff --git a/Cache/LRUCache.js b/Cache/LRUCache.js index d524bcbaec..7682a04de1 100644 --- a/Cache/LRUCache.js +++ b/Cache/LRUCache.js @@ -83,6 +83,11 @@ class LRUCache { this.cache.set(key, value) } + clear () { + this.cache.clear() + return this + } + /** * @param {string} key * @returns {*}

AltStyle によって変換されたページ (->オリジナル) /