Current File : //proc/self/root/proc/self/root/usr/lib/node_modules/bower/lib/node_modules/mout/src/math/isNear.js
define(function(){
/**
* Check if value is close to target.
*/
function isNear(val, target, threshold){
return (Math.abs(val - target) <= threshold);
}
return isNear;
});