| 1 2 3 4 5 6 7 8 9 10 11 | 1 1 10 1 | define(function(){
/**
* Check if value is close to target.
* @version 0.1.0 (2011/08/09)
*/
function isNear(val, target, threshold){
return (Math.abs(val - target) <= threshold);
}
return isNear;
});
|