(actualMethod: string)
| 173 | } |
| 174 | |
| 175 | private matchMethod(actualMethod: string): boolean { |
| 176 | return this.info.method instanceof RegExp |
| 177 | ? this.info.method.test(actualMethod) |
| 178 | : isStringEqual(this.info.method, actualMethod) |
| 179 | } |
| 180 | |
| 181 | protected extendResolverArgs(args: { |
| 182 | request: Request |
no test coverage detected