(value)
| 42 | } |
| 43 | |
| 44 | function numeric(value) { |
| 45 | return typeof value === "number" && Number.isFinite(value) ? value : 0; |
| 46 | } |
| 47 | |
| 48 | const startedAt = Date.now(); |
| 49 | const initial = await fetchJson("/api/metrics"); |
no outgoing calls
no test coverage detected