(tag: string)
| 815 | } |
| 816 | |
| 817 | function makeLiteralTagInterceptorFn(tag: string): HttpInterceptorFn { |
| 818 | return (req, next) => next(addTagToRequest(req, tag)); |
| 819 | } |
| 820 | |
| 821 | function makeOrderedTagInterceptorFn(tag: string, order: string[]): HttpInterceptorFn { |
| 822 | return (req, next) => { |
no test coverage detected