(text)
| 809 | Object.defineProperties( VNode.prototype, prototypeAccessors ); |
| 810 | |
| 811 | var createEmptyVNode = function (text) { |
| 812 | if ( text === void 0 ) text = ''; |
| 813 | |
| 814 | var node = new VNode(); |
| 815 | node.text = text; |
| 816 | node.isComment = true; |
| 817 | return node |
| 818 | }; |
| 819 | |
| 820 | function createTextVNode (val) { |
| 821 | return new VNode(undefined, undefined, undefined, String(val)) |
no outgoing calls
no test coverage detected