(cache: RequestCache)
| 371 | } |
| 372 | |
| 373 | function isNonCacheableRequest(cache: RequestCache): boolean { |
| 374 | return cache === 'no-cache' || cache === 'no-store'; |
| 375 | } |
| 376 | |
| 377 | function hasOutgoingCredentials(req: HttpRequest<unknown>): boolean { |
| 378 | const {withCredentials, credentials} = req; |
no outgoing calls
no test coverage detected