MCPcopy Create free account
hub / github.com/RtlZeroMemory/Rezi / isVNode

Function isVNode

packages/core/src/runtime/commit/validation.ts:112–114  ·  view source on GitHub ↗
(v: unknown)

Source from the content-addressed store, hash-verified

110}
111
112export function isVNode(v: unknown): v is VNode {
113 return typeof v === "object" && v !== null && "kind" in v;
114}
115
116export function commitChildrenForVNode(vnode: VNode): readonly VNode[] {
117 if (

Callers 1

commitChildrenForVNodeFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected