()
| 43 | } |
| 44 | |
| 45 | override statString(): string { |
| 46 | return `${super.statString()}, LRU has ${this.cache.size} item(s) totalling ${this.cache.calculatedSize} bytes`; |
| 47 | } |
| 48 | |
| 49 | override async getInternal(key: string): Promise<GetResult> { |
| 50 | const cached = this.cache.get(key); |
nothing calls this directly
no test coverage detected