Files
2026-06-10 12:14:46 -03:00

9 lines
156 B
JavaScript

// src/number.ts
function clamp(value, [min, max]) {
return Math.min(max, Math.max(min, value));
}
export {
clamp
};
//# sourceMappingURL=index.mjs.map