Skip to content

Instantly share code, notes, and snippets.

@imcodetolive
Created September 4, 2014 18:14
Show Gist options
  • Save imcodetolive/f4df8e0cfbdfbae30fed to your computer and use it in GitHub Desktop.
Save imcodetolive/f4df8e0cfbdfbae30fed to your computer and use it in GitHub Desktop.
Constrain a number between two bounds
define(function(){
"use strict";
var constrain;
constrain = function(min, max){
return function(number){
return Math.max(min, Math.min(number, max));
};
};
return constrain;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment