isNear.js 192 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 /** * Check if value is close to target. */ function isNear(val, target, threshold){ return (Math.abs(val - target) <= threshold); } module.exports = isNear;