You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
functionmountFragment(vNode,context,parentDOM,isSVG,nextNode,lifecycle){varchildren=vNode.children;varchildFlags=vNode.childFlags;// When fragment is optimized for multiple children, check if there is no children and change flag to invalid// This is the only normalization always done, to keep optimization flags API same for fragments and regular elementsif(childFlags&12/* MultipleChildren */&&children.length===0){childFlags=vNode.childFlags=2/* HasVNodeChildren */;children=vNode.children=createVoidVNode();}if(childFlags===2/* HasVNodeChildren */){mount(children,parentDOM,nextNode,isSVG,nextNode,lifecycle);}else{mountArrayChildren(children,parentDOM,context,isSVG,nextNode,lifecycle);}}
Looks like a typo here
should be
The text was updated successfully, but these errors were encountered: