X-Git-Url: http://git.scottworley.com/inverse-tax/blobdiff_plain/68251a4c105d8c693061b044d45468184232f35c..2d75ab3b4dcad01ee65123f680363d45bd9578a3:/tax.js diff --git a/tax.js b/tax.js index f3d2406..2687387 100644 --- a/tax.js +++ b/tax.js @@ -58,7 +58,6 @@ function invert(table) { // for gross: // net - b = m * gross // (net - b) / m = gross - // and the calculate the inverse's bounds const ms = table.map(([start, end, rate]) => 1 - rate); const full_brackets = [0].concat(table.map(([start, end, rate]) => (end - start) * rate)).slice(0, table.length);