(type, props)
| 7636 | return diffProperties(domElement, type, oldProps, newProps, rootContainerInstance); |
| 7637 | } |
| 7638 | function shouldSetTextContent(type, props) { |
| 7639 | return type === 'textarea' || type === 'option' || type === 'noscript' || typeof props.children === 'string' || typeof props.children === 'number' || typeof props.dangerouslySetInnerHTML === 'object' && props.dangerouslySetInnerHTML !== null && props.dangerouslySetInnerHTML.__html != null; |
| 7640 | } |
| 7641 | function shouldDeprioritizeSubtree(type, props) { |
| 7642 | return !!props.hidden; |
| 7643 | } |
no outgoing calls
no test coverage detected