(arr, f)
| 127 | |
| 128 | // ---- round-trips ---- |
| 129 | const sum = (arr, f) => arr.reduce((s, x) => s + (f(x) || 0), 0); |
| 130 | const wTurns = sum(cells, c => c.with.turns), woTurns = sum(cells, c => c.without?.turns); |
| 131 | const wCalls = sum(cells, c => c.with.cg.length); |
| 132 | const tsAll = cells.every(c => c.with.seq[0] === 'TS'); |
no outgoing calls
no test coverage detected