9 lines
177 B
JavaScript
9 lines
177 B
JavaScript
// packages/core/number/src/number.ts
|
|
function clamp(value, [min, max]) {
|
|
return Math.min(max, Math.max(min, value));
|
|
}
|
|
export {
|
|
clamp
|
|
};
|
|
//# sourceMappingURL=index.mjs.map
|