(cache: RequestCache)
| 345 | } |
| 346 | |
| 347 | function isNonCacheableRequest(cache: RequestCache): boolean { |
| 348 | return cache === 'no-cache' || cache === 'no-store'; |
| 349 | } |
| 350 | |
| 351 | function hasOutgoingCredentials(req: HttpRequest<unknown>): boolean { |
| 352 | const {withCredentials, credentials} = req; |
no outgoing calls
no test coverage detected
searching dependent graphs…