(textInstance, text)
| 11326 | instance.style.display = dangerousStyleValue('display', display); |
| 11327 | } |
| 11328 | function unhideTextInstance(textInstance, text) { |
| 11329 | textInstance.nodeValue = text; |
| 11330 | } // ------------------- |
| 11331 | function canHydrateInstance(instance, type, props) { |
| 11332 | if (instance.nodeType !== ELEMENT_NODE || type.toLowerCase() !== instance.nodeName.toLowerCase()) { |
| 11333 | return null; |
no outgoing calls
no test coverage detected