(tag: string)
| 647 | } |
| 648 | |
| 649 | function makeLiteralTagInterceptorFn(tag: string): HttpInterceptorFn { |
| 650 | return (req, next) => next(addTagToRequest(req, tag)); |
| 651 | } |
| 652 | |
| 653 | function makeTokenTagInterceptorFn(tag: InjectionToken<string>): HttpInterceptorFn { |
| 654 | return (req, next) => next(addTagToRequest(req, inject(tag))); |
no test coverage detected