(tag, key, attrs0, children, text, dom)
| 1 | ;(function() { |
| 2 | "use strict" |
| 3 | function Vnode(tag, key, attrs0, children, text, dom) { |
| 4 | return {tag: tag, key: key, attrs: attrs0, children: children, text: text, dom: dom, domSize: undefined, state: undefined, events: undefined, instance: undefined} |
| 5 | } |
| 6 | Vnode.normalize = function(node) { |
| 7 | if (Array.isArray(node)) return Vnode("[", undefined, undefined, Vnode.normalizeChildren(node), undefined, undefined) |
| 8 | if (node != null && typeof node !== "object") return Vnode("#", undefined, undefined, node === false ? "" : node, undefined, undefined) |
no outgoing calls
no test coverage detected