UNPKG

ziko

Version:

A versatile JavaScript library offering a rich set of Hyperscript Based UI components, advanced mathematical utilities, interactivity ,animations, client side routing and more ...

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