(textInstance, text)
| 7754 | instance.style.display = dangerousStyleValue('display', display); |
| 7755 | } |
| 7756 | function unhideTextInstance(textInstance, text) { |
| 7757 | textInstance.nodeValue = text; |
| 7758 | } // ------------------- |
| 7759 | function canHydrateInstance(instance, type, props) { |
| 7760 | if (instance.nodeType !== ELEMENT_NODE || type.toLowerCase() !== instance.nodeName.toLowerCase()) { |
| 7761 | return null; |
no outgoing calls
no test coverage detected