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