(name)
| 16 | |
| 17 | const start = performance.now(); |
| 18 | function time(name) { |
| 19 | const ms_since_start = (performance.now() - start).toFixed(1).padStart(7); |
| 20 | print(`[${ms_since_start}] ${name}`); |
| 21 | } |
| 22 | |
| 23 | // At the time of writing this test (Nov 2022), this module generated ~20MB of |
| 24 | // code on x64 and ~18MB on arm64. |
no test coverage detected