(cacheKey: string)
| 694 | } |
| 695 | |
| 696 | delete(cacheKey: string) { |
| 697 | const entry = this.#cacheKeyToEntryMap.get(cacheKey); |
| 698 | if (entry) { |
| 699 | entry.invalidate(); |
| 700 | this.#cacheKeyToEntryMap.delete(cacheKey); |
| 701 | } |
| 702 | } |
| 703 | |
| 704 | has(cacheKey: string) { |
| 705 | return this.#cacheKeyToEntryMap.has(cacheKey); |
no test coverage detected