(type, props)
| 373 | export const noTimeout = -1; |
| 374 | |
| 375 | export function shouldSetTextContent(type, props) { |
| 376 | return ( |
| 377 | typeof props.children === 'string' || typeof props.children === 'number' |
| 378 | ); |
| 379 | } |
| 380 | |
| 381 | let currentUpdatePriority: EventPriority = NoEventPriority; |
| 382 |
no outgoing calls
no test coverage detected