()
| 41 | } |
| 42 | |
| 43 | override statString(): string { |
| 44 | return `${super.statString()}. ${this.upstream.map(c => `${c.details}: ${c.statString()}`).join('. ')}`; |
| 45 | } |
| 46 | |
| 47 | private async propagateHitToMissedCaches(caches: BaseCache[], key: string, data: Uint8Array): Promise<void> { |
| 48 | await Promise.all(caches.map(c => c.put(key, data))); |
nothing calls this directly
no test coverage detected