(target)
| 2327 | const isTeleportDeferred = (props) => props && (props.defer || props.defer === ""); |
| 2328 | const isTargetSVG = (target) => typeof SVGElement !== "undefined" && target instanceof SVGElement; |
| 2329 | const isTargetMathML = (target) => typeof MathMLElement === "function" && target instanceof MathMLElement; |
| 2330 | const resolveTarget = (props, select) => { |
| 2331 | const targetSelector = props && props.to; |
| 2332 | if (isString(targetSelector)) { |
no outgoing calls
no test coverage detected