(pathOrUrl: string)
| 10 | const DEFAULT_TTL_MS = 5 * 60 * 1000; |
| 11 | |
| 12 | function getCacheKey(pathOrUrl: string): string { |
| 13 | return (pathOrUrl || '').trim(); |
| 14 | } |
| 15 | |
| 16 | function getCachedAccessUrl(pathOrUrl: string): string | null { |
| 17 | const key = getCacheKey(pathOrUrl); |
no outgoing calls
no test coverage detected