Fix format

This commit is contained in:
Kochetygov Andrew 2021-11-12 03:49:31 +03:00 committed by GitHub
parent 6420d64534
commit e7e8d16e9d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -39,11 +39,7 @@ const parseNodeTree = (context: Context, node: Node, parent: ElementContainer, r
parseNodeTree(context, childNode.shadowRoot, container, root);
}
if (
!isTextareaElement(childNode) &&
!isSVGElement(childNode) &&
!isSelectElement(childNode)
) {
if (!isTextareaElement(childNode) && !isSVGElement(childNode) && !isSelectElement(childNode)) {
parseNodeTree(context, childNode, container, root);
}
}