(headers: HttpHeaders)
| 367 | } |
| 368 | |
| 369 | function hasSetCookieHeader(headers: HttpHeaders): boolean { |
| 370 | return headers.has('set-cookie'); |
| 371 | } |
| 372 | |
| 373 | function isNonCacheableRequest(cache: RequestCache): boolean { |
| 374 | return cache === 'no-cache' || cache === 'no-store'; |
no test coverage detected