jstd-web/node_modules/snabbdom/build/vnode.js

5 lines
202 B
JavaScript
Raw Normal View History

2025-11-25 15:23:22 +08:00
export function vnode(sel, data, children, text, elm) {
const key = data === undefined ? undefined : data.key;
return { sel, data, children, text, elm, key };
}
//# sourceMappingURL=vnode.js.map