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

Function isFunction

packages/qwik-table/src/index.tsx:14–15  ·  view source on GitHub ↗
(comp: unknown)

Source from the content-addressed store, hash-verified

12type QwikComps = Qwik.Component | Qwik.FunctionComponent
13
14const isFunction = (comp: unknown): comp is Function =>
15 typeof comp === 'function'
16
17const isQwikComponent = (comp: unknown): comp is QwikComps =>
18 isFunction(comp) && comp.name === 'QwikComponent'

Callers 2

isQwikComponentFunction · 0.70
flexRenderFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected