Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
function render(rootInput, container, cb = null, context = EMPTY_OBJ) {
__render(rootInput, container, cb, context);
const input = container.$V;
if (input && input.flags & VNodeFlags.Component) {
return input.children;
}
}
function unmountComponentAtNode(container: Element | SVGAElement | DocumentFragment): boolean {
__render(null, container, null, null);
return true;
}