Created
June 16, 2018 14:49
-
-
Save philipshen/aea3f737a806294e3f5eeba3efc01106 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
export const clamp = (val, min, max) => val < min ? min : val > max ? max : val |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment