export function clamp(value, min = 0, max = Number.MAX_VALUE) { return Math.min(Math.max(value, min), max); } //# sourceMappingURL=numbers.js.map