MCPcopy
hub / github.com/fanmingming/live / createEmptyVNode

Function createEmptyVNode

m3u8/vue.js:811–818  ·  view source on GitHub ↗
(text)

Source from the content-addressed store, hash-verified

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))

Callers 3

_createElementFunction · 0.85
renderMixinFunction · 0.85
createAsyncPlaceholderFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected