10 lines
196 B
JavaScript
10 lines
196 B
JavaScript
// node_modules/@radix-ui/number/dist/index.mjs
|
|
function clamp(value, [min, max]) {
|
|
return Math.min(max, Math.max(min, value));
|
|
}
|
|
|
|
export {
|
|
clamp
|
|
};
|
|
//# sourceMappingURL=chunk-6ZMM2PAV.js.map
|