(private cacheDir: string)
| 22 | private usedKeys = new Set<string>(); |
| 23 | |
| 24 | constructor(private cacheDir: string) {} |
| 25 | |
| 26 | async fetch(url: string): Promise<string> { |
| 27 | return this.cached(url, async () => { |
nothing calls this directly
no outgoing calls
no test coverage detected