mirror of
https://github.com/hex248/ob248.com.git
synced 2026-02-07 18:23:04 +00:00
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
|