UNPKG

seti-ramesesv1

Version:

Reusable components and context for Next.js apps

7 lines (5 loc) 194 B
function clamp(val, min = Number.MIN_SAFE_INTEGER, max = Number.MAX_SAFE_INTEGER) { return Math.max(min, Math.min(val, max)); } export { clamp as default }; //# sourceMappingURL=clamp.js.map