sudovanilla-website/public/@shoelace-style/shoelace/cdn/chunks/chunk.HF7GESMZ.js
2024-05-13 23:34:06 -04:00

15 lines
285 B
JavaScript

// src/internal/math.ts
function clamp(value, min, max) {
const noNegativeZero = (n) => Object.is(n, -0) ? 0 : n;
if (value < min) {
return noNegativeZero(min);
}
if (value > max) {
return noNegativeZero(max);
}
return noNegativeZero(value);
}
export {
clamp
};