module TaxUtil

Defined in:

tax_util.cr

Constant Summary

BRACKETS = {"percent" => [0.10, 0.12, 0.22, 0.24, 0.32, 0.35, 0.37], "single" => [0, 9875, 40125, 85525, 163300, 207350, 518400], "married" => [0, 19750, 80250, 171050, 326600, 414700, 622050], "hoh" => [0, 14100, 53700, 85500, 163300, 207350, 518400]}

Class Method Summary

Class Method Detail

def self.calc_taxes(income, status = "single") #

[View source]