* @param {Bench} bench * @returns {Map }
(bench)
| 69 | * @returns {Map<string, TaskMeta>} |
| 70 | */ |
| 71 | function getOrCreateMeta(bench) { |
| 72 | let m = metaMap.get(bench); |
| 73 | if (!m) { |
| 74 | m = new Map(); |
| 75 | metaMap.set(bench, m); |
| 76 | } |
| 77 | return m; |
| 78 | } |
| 79 | |
| 80 | /** |
| 81 | * Wrap a tinybench Bench so that CodSpeed simulation mode instruments each |
no test coverage detected
searching dependent graphs…