This website requires JavaScript.
Explore
Help
Sign In
shynd
/
hyprland-dotfiles
Watch
1
Star
0
Fork
You've already forked hyprland-dotfiles
0
Code
Issues
Pull Requests
Packages
Projects
Releases
Wiki
Activity
d518e10b3d
hyprland-dotfiles
/
config
/
ags
/
modules
/
.miscutils
/
mathfuncs.js
4 lines
81 B
JavaScript
Raw
Blame
History
export
function
clamp
(
x
,
min
,
max
)
{
return
Math
.
min
(
Math
.
max
(
x
,
min
)
,
max
)
;
}
Reference in New Issue
View Git Blame
Copy Permalink