]> git.scottworley.com Git - inverse-tax/blobdiff - tax.test.js
Loose equality comparisons for floats
[inverse-tax] / tax.test.js
index 29f436fa957586671113770afc7cd182ebe9074c..5080001436529b89c94c58dc4fbe90ef1f89e98a 100644 (file)
@@ -6,10 +6,6 @@ function test(description, f) {
   f();
 }
 
-function near(a, b, epsilon = 1e-6) {
-  return Math.abs(a - b) < epsilon;
-}
-
 function rand(limit = 99) {
   return Math.round(Math.random() * limit);
 }