@fluentui/react
Version:
Reusable React components for building web experiences.
9 lines • 326 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.clamp = clamp;
/** 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;
}
//# sourceMappingURL=clamp.js.map