UNPKG

@fluentui/react

Version:

Reusable React components for building web experiences.

12 lines 451 B
define(["require", "exports"], function (require, exports) { "use strict"; 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