(k)
| 213 | totals.calls += W.reduce((s, r) => s + r.allocCalls, 0); |
| 214 | for (const [k] of SUFFICIENCY) totals.counts[k] += cnt(k); |
| 215 | const cell = (k) => (answered ? `${cnt(k)} ${Math.round((cnt(k) / answered) * 100)}%` : '—').padEnd(9); |
| 216 | console.log( |
| 217 | `${repo.padEnd(11)} ${String(answered).padEnd(7)} ` + |
| 218 | `${cell('explore_again')}${cell('read_returned')}${cell('read_missed')}${cell('search')}` + |
no test coverage detected