()
| 24 | } |
| 25 | |
| 26 | export function createBenchContainer() { |
| 27 | const container = document.createElement('div') |
| 28 | document.body.append(container) |
| 29 | |
| 30 | return container |
| 31 | } |
| 32 | |
| 33 | export function removeBenchContainer(container: HTMLDivElement | undefined) { |
| 34 | container?.remove() |