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