(req: HttpRequest<unknown>)
| 375 | } |
| 376 | |
| 377 | function hasOutgoingCredentials(req: HttpRequest<unknown>): boolean { |
| 378 | const {withCredentials, credentials} = req; |
| 379 | |
| 380 | return withCredentials || credentials === 'include' || credentials === 'same-origin'; |
| 381 | } |
| 382 | |
| 383 | function getFilteredHeaders( |
| 384 | headers: HttpHeaders, |
no outgoing calls
no test coverage detected