(type, props)
| 16837 | : parentNamespace; |
| 16838 | } |
| 16839 | function shouldSetTextContent(type, props) { |
| 16840 | return ( |
| 16841 | "textarea" === type || |
| 16842 | "noscript" === type || |
| 16843 | "string" === typeof props.children || |
| 16844 | "number" === typeof props.children || |
| 16845 | "bigint" === typeof props.children || |
| 16846 | ("object" === typeof props.dangerouslySetInnerHTML && |
| 16847 | null !== props.dangerouslySetInnerHTML && |
| 16848 | null != props.dangerouslySetInnerHTML.__html) |
| 16849 | ); |
| 16850 | } |
| 16851 | var currentPopstateTransitionEvent = null; |
| 16852 | function shouldAttemptEagerTransition() { |
| 16853 | var event = window.event; |
no outgoing calls
no test coverage detected
searching dependent graphs…