()
| 72 | } |
| 73 | |
| 74 | function isRootEmpty(): boolean { |
| 75 | const root = document.getElementById('root'); |
| 76 | if (!root) { |
| 77 | return true; |
| 78 | } |
| 79 | return root.childElementCount === 0; |
| 80 | } |
| 81 | |
| 82 | function registerGlobalErrorHandlers() { |
| 83 | const flag = '__bitfun_global_error_handlers_registered__'; |