(value: number, min: number, max: number)
| 766 | } |
| 767 | |
| 768 | function clamp(value: number, min: number, max: number): number { |
| 769 | return Math.min(Math.max(value, min), max) |
| 770 | } |
| 771 | |
| 772 | function normalizeZoomFactor(value: number): number { |
| 773 | return Math.round(clamp(value, MIN_ZOOM_FACTOR, MAX_ZOOM_FACTOR) * 100) / 100 |
no outgoing calls
no test coverage detected