Sha256: 9f61cd1c163f64d02571b02c7f5fd1daba414c537a7a72d35de39a057876dd12
Contents?: true
Size: 203 Bytes
Versions: 69
Compression:
Stored size: 203 Bytes
Contents
define(function(){ /** * Check if value is close to target. */ function isNear(val, target, threshold){ return (Math.abs(val - target) <= threshold); } return isNear; });
Version data entries
69 entries across 69 versions & 2 rubygems