( child: Instance, container: Container, before: Instance )
| 55 | } |
| 56 | |
| 57 | export function insertChildToContainer( |
| 58 | child: Instance, |
| 59 | container: Container, |
| 60 | before: Instance |
| 61 | ) { |
| 62 | container.insertBefore(child, before); |
| 63 | } |
| 64 | |
| 65 | export const scheduleMicroTask = |
| 66 | typeof queueMicrotask === 'function' |
no outgoing calls
no test coverage detected