stow_dotfiles/hyprland/.config/ags/modules/.miscutils/mathfuncs.js
Matthieu Fortin (CPC/CCP) eee7ade89b hypr config ...
2024-09-18 16:00:39 -04:00

4 lines
No EOL
83 B
JavaScript

export function clamp(x, min, max) {
return Math.min(Math.max(x, min), max);
}