(target: T, thisArg: any, argArray: any[])
| 19 | |
| 20 | return new Proxy<T>(table as T, { |
| 21 | apply(target: T, thisArg: any, argArray: any[]): any { |
| 22 | initializeObject() |
| 23 | if (typeof object === 'function') { |
| 24 | return Reflect.apply(object, thisArg, argArray) |
| 25 | } |
| 26 | return Reflect.apply(target as any, thisArg, argArray) |
| 27 | }, |
| 28 | get(_, prop, receiver) { |
| 29 | initializeObject() |
| 30 | return Reflect.get(object as T, prop, receiver) |
nothing calls this directly
no test coverage detected
searching dependent graphs…