* Construct a cache-busting URL for a given URL.
(url: string)
| 552 | * Construct a cache-busting URL for a given URL. |
| 553 | */ |
| 554 | private cacheBust(url: string): string { |
| 555 | return url + (url.indexOf('?') === -1 ? '?' : '&') + 'ngsw-cache-bust=' + Math.random(); |
| 556 | } |
| 557 | |
| 558 | protected async safeFetch(req: Request): Promise<Response> { |
| 559 | try { |
nothing calls this directly
no test coverage detected
searching dependent graphs…