(headers: HttpHeaders)
| 341 | } |
| 342 | |
| 343 | function hasSetCookieHeader(headers: HttpHeaders): boolean { |
| 344 | return headers.has('set-cookie'); |
| 345 | } |
| 346 | |
| 347 | function isNonCacheableRequest(cache: RequestCache): boolean { |
| 348 | return cache === 'no-cache' || cache === 'no-store'; |
no test coverage detected
searching dependent graphs…