var Within = function (a, b, tolerance){ return (Math.abs(a - b) <= tolerance); } ; module.exports = Within;