summaryrefslogtreecommitdiff
path: root/packages/frontend-shared/js/math.ts
blob: 528f3b08bf4661f7c8ebe781c035d19722a4a0fe (plain)
1
2
3
4
5
6
7
8
9
10
/*
 * SPDX-FileCopyrightText: dakkar and other Sharkey contributors
 * SPDX-License-Identifier: AGPL-3.0-only
 */

export function clamp(value: number, min: number, max: number) {
	if (value > max) return max;
	if (value < min) return min;
	return value;
}