(rNode: RNode | null)
| 67 | * only use internal data structures and state to compute this information. |
| 68 | */ |
| 69 | export function isDisconnectedRNode(rNode: RNode | null) { |
| 70 | return !!rNode && !(rNode as Node).isConnected; |
| 71 | } |
| 72 | |
| 73 | /** |
| 74 | * Locate a node in an i18n tree that corresponds to a given instruction index. |
no outgoing calls
no test coverage detected
searching dependent graphs…