(textInstance: TextInstance)
| 80 | } |
| 81 | |
| 82 | export function hideTextInstance(textInstance: TextInstance) { |
| 83 | textInstance.nodeValue = ''; |
| 84 | } |
| 85 | |
| 86 | export function unhideTextInstance(textInstance: TextInstance, text: string) { |
| 87 | textInstance.nodeValue = text; |
no outgoing calls
no test coverage detected