UNPKG

office-ui-fabric-react

Version:

Reusable React components for building experiences for Microsoft 365.

6 lines 233 B
/** Clamp a value to ensure it falls within a given range. */ export function clamp(value, max, min) { if (min === void 0) { min = 0; } return value < min ? min : value > max ? max : value; } //# sourceMappingURL=clamp.js.map