(targetFn, thisArg, argArray)
| 75 | if (typeof value === 'function') { |
| 76 | return new Proxy(value, { |
| 77 | apply(targetFn, thisArg, argArray) { |
| 78 | return invokeWithRetry(() => (targetFn as Function).apply(targetObj, argArray)); |
| 79 | }, |
| 80 | }); |
| 81 | } |
| 82 | if (typeof value === 'object' && value !== null) { |
nothing calls this directly
no test coverage detected