| 193 | } |
| 194 | |
| 195 | interface NumericWithUnit { |
| 196 | numeric: number; |
| 197 | /** Trailing unit token (`MB`, `passing`, `%`, …) or null when absent. */ |
| 198 | unit: string | null; |
| 199 | } |
| 200 | |
| 201 | /** |
| 202 | * Parse a value like `2.41 MB`, `84 passing`, or `100` as a numeric + |
nothing calls this directly
no outgoing calls
no test coverage detected