(f)
| 474 | .sort((a, b) => b.chars - a.chars); |
| 475 | const answerChars = ranked.filter((r) => r.answer).reduce((s, r) => s + r.chars, 0); |
| 476 | const pct = (f) => `${(f * 100).toFixed(1)}%`; |
| 477 | |
| 478 | const out = []; |
| 479 | out.push(`${indent}Explore envelope: ${envelope.toLocaleString('en-US')} chars over ${exploreTexts.length} response(s)`); |
no outgoing calls
no test coverage detected