UNPKG

ziko

Version:

a versatile javaScript framework offering a rich set of UI components, advanced mathematical utilities, reactivity, animations, client side routing and graphics capabilities

15 lines (14 loc) 280 B
export default class ZikoUINode { constructor(node){ this.cache = { node } } isZikoUINode(){ return true } get node(){ return this.cache.node; } } globalThis.node = (node) => new ZikoUINode(node);