return as_text.trim().split('\n').map(parse_line);
}
-function parse_tax_table(as_text) {
- return parse_table(as_text).map(([start, rate], i, table) =>
+function tax_table_from_table(table) {
+ return table.map(([start, rate], i, table) =>
[start, i < table.length - 1 ? table[i+1][0] : Infinity, rate / 100.0]);
}
+function parse_tax_table(as_text) {
+ return tax_table_from_table(parse_table(as_text));
+}
+
function sum(nums) {
return nums.reduce((total, num) => total + num, 0);
}
}
function invert(table) {
+ if (table.length == 0) return x => x;
+
// Here we solve
// net = m * gross + b
// for gross: