UNPKG

devextreme

Version:

HTML5 JavaScript Component Suite for Responsive Web Development

15 lines (13 loc) 445 B
/** * DevExtreme (cjs/renovation/ui/scroll_view/utils/clamp_into_range.js) * Version: 22.1.9 * Build date: Tue Apr 18 2023 * * Copyright (c) 2012 - 2023 Developer Express Inc. ALL RIGHTS RESERVED * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/ */ "use strict"; exports.clampIntoRange = clampIntoRange; function clampIntoRange(value, max, min) { return Math.max(Math.min(value, max), min) }