UNPKG

bits-ui

Version:

The headless components for Svelte.

7 lines (6 loc) 147 B
/** * Clamps a number between a minimum and maximum value. */ export function clamp(n, min, max) { return Math.min(max, Math.max(min, n)); }