()
| 110 | } |
| 111 | |
| 112 | getStaleWarnings(): StaleCacheWarning[] { |
| 113 | return [...this.staleWarnings]; |
| 114 | } |
| 115 | |
| 116 | private cacheKey(url: string): string { |
| 117 | return createHash("sha256").update(url).digest("hex").slice(0, 16); |
no outgoing calls
no test coverage detected