(target: RendererElement)
| 37 | props && (props.defer || props.defer === '') |
| 38 | |
| 39 | const isTargetSVG = (target: RendererElement): boolean => |
| 40 | typeof SVGElement !== 'undefined' && target instanceof SVGElement |
| 41 | |
| 42 | const isTargetMathML = (target: RendererElement): boolean => |
| 43 | typeof MathMLElement === 'function' && target instanceof MathMLElement |
no outgoing calls
no test coverage detected