(target: RendererElement)
| 40 | typeof SVGElement !== 'undefined' && target instanceof SVGElement |
| 41 | |
| 42 | const isTargetMathML = (target: RendererElement): boolean => |
| 43 | typeof MathMLElement === 'function' && target instanceof MathMLElement |
| 44 | |
| 45 | const resolveTarget = <T = RendererElement>( |
| 46 | props: TeleportProps | null, |
no outgoing calls
no test coverage detected