MCPcopy Index your code
hub / github.com/TruthHun/BookStack / createChildren

Function createChildren

static/vuejs/vue.runtime.esm.js:4715–4723  ·  view source on GitHub ↗
(vnode, children, insertedVnodeQueue)

Source from the content-addressed store, hash-verified

4713 }
4714
4715 function createChildren (vnode, children, insertedVnodeQueue) {
4716 if (Array.isArray(children)) {
4717 for (var i = 0; i < children.length; ++i) {
4718 createElm(children[i], insertedVnodeQueue, vnode.elm, null, true);
4719 }
4720 } else if (isPrimitive(vnode.text)) {
4721 nodeOps.appendChild(vnode.elm, nodeOps.createTextNode(vnode.text));
4722 }
4723 }
4724
4725 function isPatchable (vnode) {
4726 while (vnode.componentInstance) {

Callers 2

createElmFunction · 0.70
hydrateFunction · 0.70

Calls 2

createElmFunction · 0.70
isPrimitiveFunction · 0.70

Tested by

no test coverage detected