summaryrefslogtreecommitdiffstats
path: root/res/qml/Mixxx/MathUtils.mjs
blob: e399e23b8768bf329a1aab2bfe35527910b5d9ea (plain)
1
2
3
export function clamp(value, min, max) {
    return Math.max(Math.min(value, max), min);
};