export function clamp()

in src/utils.ts [2:4]


export function clamp(x: number, min = 0, max = 1) {
  return Math.max(Math.min(x, max), min);
}