(value: number, min: number, max: number)
| 107 | } |
| 108 | |
| 109 | function clamp(value: number, min: number, max: number) { |
| 110 | return Math.min(Math.max(value, min), max); |
| 111 | } |
| 112 | |
| 113 | /** |
| 114 | * `ProgressBar` is a customisable class that reports updates to a |
no test coverage detected