()
| 23 | }; |
| 24 | |
| 25 | function bootstrapHyperframeRuntime(): void { |
| 26 | const win = window as HyperframeWindow; |
| 27 | if (win.__hyperframeRuntimeBootstrapped) { |
| 28 | return; |
| 29 | } |
| 30 | win.__hyperframeRuntimeBootstrapped = true; |
| 31 | initSandboxRuntimeModular(); |
| 32 | } |
| 33 | |
| 34 | if (document.readyState === "loading") { |
| 35 | document.addEventListener("DOMContentLoaded", bootstrapHyperframeRuntime, { once: true }); |
no test coverage detected