(e)
| 494 | return buildSeries(e).filter((s) => normalSeries.some((ns) => ns.name === s.name)); |
| 495 | } |
| 496 | function buildOutlierSeries(e) { |
| 497 | return buildSeries(e).filter((s) => outlierSeries.some((os) => os.name === s.name)); |
| 498 | } |
| 499 | |
| 500 | const mainMin = normal.length > 0 ? Math.max(0, Math.min(...normal)) : 0; |
| 501 | const mainMax = normal.length > 0 ? Math.max(...normal) : 100; |
nothing calls this directly
no test coverage detected