(node)
| 11518 | node[internalContainerInstanceKey] = hostRoot; |
| 11519 | } |
| 11520 | function unmarkContainerAsRoot(node) { |
| 11521 | node[internalContainerInstanceKey] = null; |
| 11522 | } |
| 11523 | function isContainerMarkedAsRoot(node) { |
| 11524 | return !!node[internalContainerInstanceKey]; |
| 11525 | } // Given a DOM node, return the closest HostComponent or HostText fiber ancestor. |
no outgoing calls
no test coverage detected