(req: HttpRequest<unknown>)
| 349 | } |
| 350 | |
| 351 | function hasOutgoingCredentials(req: HttpRequest<unknown>): boolean { |
| 352 | const {withCredentials, credentials} = req; |
| 353 | |
| 354 | return withCredentials || credentials === 'include' || credentials === 'same-origin'; |
| 355 | } |
| 356 | |
| 357 | function getFilteredHeaders( |
| 358 | headers: HttpHeaders, |
no outgoing calls
no test coverage detected
searching dependent graphs…