(node)
| 6399 | |
| 6400 | |
| 6401 | const checkPartialGroup = function checkPartialGroup(node) { |
| 6402 | if (node instanceof DocumentFragment || node instanceof Anchor) { |
| 6403 | return node; |
| 6404 | } |
| 6405 | |
| 6406 | return null; |
| 6407 | }; // Return the outermost node of a domTree. |
| 6408 | |
| 6409 | |
| 6410 | const getOutermostNode = function getOutermostNode(node, side) { |
no outgoing calls
no test coverage detected