Skip to content

Instantly share code, notes, and snippets.

@dinocarl
Last active January 19, 2022 20:03
Show Gist options
  • Save dinocarl/6440321800151345e42378c1c3829ac2 to your computer and use it in GitHub Desktop.
Save dinocarl/6440321800151345e42378c1c3829ac2 to your computer and use it in GitHub Desktop.
const clamp = (min, max, x) => Math.min(Math.max(x, min), max);
const clmp = (minVal, maxVal) => compose(
min(maxVal),
max(minVal)
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment