UNPKG

devextreme

Version:

HTML5 JavaScript Component Suite for Responsive Web Development

12 lines (11 loc) 393 B
/** * DevExtreme (esm/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/ */ export function clampIntoRange(value, max, min) { return Math.max(Math.min(value, max), min) }