mirror of
https://github.com/GraphiteEditor/Graphite.git
synced 2026-09-16 23:08:05 +08:00
4 lines
104 B
TypeScript
4 lines
104 B
TypeScript
export function clamp(value: number, min = 0, max = 1) {
|
|
return Math.max(min, Math.min(value, max));
|
|
}
|