()
| 545 | const commitHooks: Array<Function> = []; |
| 546 | |
| 547 | export function onCommitRoot(): void { |
| 548 | if (supportsTestSelectors) { |
| 549 | commitHooks.forEach(commitHook => commitHook()); |
| 550 | } |
| 551 | } |
| 552 | |
| 553 | export type IntersectionObserverOptions = Object; |
| 554 |
nothing calls this directly
no test coverage detected