(node)
| 7946 | node[internalContainerInstanceKey] = hostRoot; |
| 7947 | } |
| 7948 | function unmarkContainerAsRoot(node) { |
| 7949 | node[internalContainerInstanceKey] = null; |
| 7950 | } |
| 7951 | function isContainerMarkedAsRoot(node) { |
| 7952 | return !!node[internalContainerInstanceKey]; |
| 7953 | } // Given a DOM node, return the closest HostComponent or HostText fiber ancestor. |
no outgoing calls
no test coverage detected