X-Git-Url: http://git.scottworley.com/inverse-tax/blobdiff_plain/9c149d52fcc4ed94f5de81801c1ecf8fc56adb60..59179b68f1956c4e6f2da806d34fd3cc2106a27b:/tax.test.js 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); }