MCPcopy Index your code
hub / github.com/TanStack/table / apply

Function apply

packages/angular-table/src/lazy-signal-initializer.ts:21–27  ·  view source on GitHub ↗
(target: T, thisArg: any, argArray: any[])

Source from the content-addressed store, hash-verified

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)

Callers

nothing calls this directly

Calls 1

initializeObjectFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…