(target, thisArg, args)
| 75 | original => |
| 76 | new Proxy(original, { |
| 77 | apply(target, thisArg, args) { |
| 78 | return wrapRequestHandler({ options, request: args[0], context }, () => { |
| 79 | return Reflect.apply(target, thisArg, args); |
| 80 | }); |
| 81 | }, |
| 82 | }), |
| 83 | ); |
| 84 | } |
nothing calls this directly
no test coverage detected