@fluentui/react
Version:
Reusable React components for building web experiences.
10 lines • 350 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.clamp = void 0;
/** Clamp a value to ensure it falls within a given range. */
function clamp(value, max, min) {
if (min === void 0) { min = 0; }
return value < min ? min : value > max ? max : value;
}
exports.clamp = clamp;
//# sourceMappingURL=clamp.js.map