(request, next)
| 877 | } |
| 878 | |
| 879 | function before (request, next) { |
| 880 | |
| 881 | if (isFunction(request.before)) { |
| 882 | request.before.call(this, request); |
| 883 | } |
| 884 | |
| 885 | next(); |
| 886 | } |
| 887 | |
| 888 | /** |
| 889 | * HTTP method override Interceptor. |
nothing calls this directly
no test coverage detected