shift-shell/libmobileshell/declarative/qml/components/util.js

9 lines
209 B
JavaScript

/*
* SPDX-FileCopyrightText: 2021 Devin Lin <devin@kde.org>
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
function applyMinMaxRange(min, max, num) {
return Math.min(max, Math.max(min, num));
}