(method)
| 1 | //Internal utility for creating context style global utils |
| 2 | const proxy = function(method) { |
| 3 | return function(context, ...args) { |
| 4 | return method.apply(context, args); |
| 5 | }; |
| 6 | }; |
| 7 | |
| 8 | export default proxy; |
no outgoing calls
no test coverage detected
searching dependent graphs…