X-Git-Url: http://git.scottworley.com/inverse-tax/blobdiff_plain/9c149d52fcc4ed94f5de81801c1ecf8fc56adb60..a5aef764d87ffe30b15f21b141b192dca8b04d0e:/tax.test.js?ds=sidebyside diff --git a/tax.test.js b/tax.test.js index 29f436f..5080001 100644 --- a/tax.test.js +++ b/tax.test.js @@ -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); }