(value)
| 1479 | } |
| 1480 | |
| 1481 | formatNumber(value) { |
| 1482 | if (!Number.isFinite(value)) return "—"; |
| 1483 | return this.numberFormatter.format(Math.round(value)); |
| 1484 | } |
| 1485 | |
| 1486 | buildMetric(label, value) { |
| 1487 | const wrapper = document.createElement("span"); |
no outgoing calls
no test coverage detected