UNPKG

fluxel

Version:

An ultra-lightweight, high-performance library for efficient DOM building and dynamic web UIs

7 lines (6 loc) 168 B
export default function ensureNode(child) { if (child instanceof Node) { return child; } throw new Error("Invalid child type, expected a Node."); }