(tool, o)
| 101 | ]; |
| 102 | |
| 103 | function emit(tool, o) { |
| 104 | process.stdout.write(JSON.stringify({ tool, packs: tool === 'ce-rubi', ...o }) + '\n'); |
| 105 | } |
| 106 | function median(xs) { |
| 107 | const s = [...xs].sort((a, b) => a - b); |
| 108 | const m = Math.floor(s.length / 2); |