()
| 1014 | return new Promise$1(function (resolve) { |
| 1015 | |
| 1016 | function exec() { |
| 1017 | |
| 1018 | handler = reqHandlers.pop(); |
| 1019 | |
| 1020 | if (isFunction(handler)) { |
| 1021 | handler.call(context, request, next); |
| 1022 | } else { |
| 1023 | warn('Invalid interceptor of type ' + typeof handler + ', must be a function'); |
| 1024 | next(); |
| 1025 | } |
| 1026 | } |
| 1027 | |
| 1028 | function next(response) { |
| 1029 |
no test coverage detected