mirror of
https://activitypub.software/TransFem-org/Sharkey.git
synced 2025-08-21 05:44:48 +00:00
10 lines
257 B
TypeScript
10 lines
257 B
TypeScript
/*
|
|
* 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;
|
|
}
|