Created
August 19, 2021 13:24
-
-
Save umanda/8b5b83524cf03258c0df59728e56cb54 to your computer and use it in GitHub Desktop.
clamping number
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function clamp(value, min, max) { | |
return min < max | |
? (value < min ? min : value > max ? max : value) | |
: (value < max ? max : value > min ? min : value) | |
} | |
//https://css-tricks.com/snippets/sass/clamping-number/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment