(actions: () => void)
| 92 | }; |
| 93 | |
| 94 | export const µs = (actions: () => void): number => { |
| 95 | const start = performance.now(); |
| 96 | actions(); |
| 97 | return 1000 * (performance.now() - start); |
| 98 | }; |
| 99 | |
| 100 | export const getNTables = (N: number): Tables => { |
| 101 | const tables: Tables = {}; |
no test coverage detected