isNear.js 192 B

123456789
  1. /**
  2. * Check if value is close to target.
  3. */
  4. function isNear(val, target, threshold){
  5. return (Math.abs(val - target) <= threshold);
  6. }
  7. module.exports = isNear;