@vimeo/iris
Version:
Vimeo Design System
11 lines (7 loc) • 329 B
JavaScript
;
Object.defineProperty(exports, '__esModule', { value: true });
function clamp(number, _a) {
var _b = _a === void 0 ? { min: 0, max: 1000 } : _a, _c = _b.min, min = _c === void 0 ? 0 : _c, _d = _b.max, max = _d === void 0 ? 1000 : _d;
return Math.min(Math.max(number, min), max);
}
exports.clamp = clamp;