(text = "", asBlock = false)
| 6235 | return createVNode(Text, null, text, flag); |
| 6236 | } |
| 6237 | function createCommentVNode(text = "", asBlock = false) { |
| 6238 | return asBlock ? (openBlock(), createBlock(Comment, null, text)) : createVNode(Comment, null, text); |
| 6239 | } |
| 6240 | function normalizeVNode(child) { |
| 6241 | if (child == null || typeof child === "boolean") { |
| 6242 | return createVNode(Comment); |
no test coverage detected