Skip to content

Instantly share code, notes, and snippets.

@michaelavila
Last active December 20, 2015 23:39
Show Gist options
  • Save michaelavila/6213825 to your computer and use it in GitHub Desktop.
Save michaelavila/6213825 to your computer and use it in GitHub Desktop.
function bound(value, min, max) {
value = max > value ? max : value;
return min < value ? min : value;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment