(value)
| 1250 | } |
| 1251 | |
| 1252 | function formatMs(value) { |
| 1253 | if (typeof value !== "number" || Number.isNaN(value)) { |
| 1254 | return "n/a"; |
| 1255 | } |
| 1256 | return `${Math.round(value)} ms`; |
| 1257 | } |
| 1258 | |
| 1259 | function roundMs(value) { |
| 1260 | return Math.round(value * 100) / 100; |
no outgoing calls
no test coverage detected