https://github.com/vwkd/income-tax-de
Einkommensteuerrechner für Deutschland
https://github.com/vwkd/income-tax-de
einkommensteuer germany health-insurance income-tax steuer tax
Last synced: 5 months ago
JSON representation
Einkommensteuerrechner für Deutschland
- Host: GitHub
- URL: https://github.com/vwkd/income-tax-de
- Owner: vwkd
- License: mit
- Created: 2024-03-06T23:58:37.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-05-15T11:35:11.000Z (6 months ago)
- Last Synced: 2025-05-21T09:15:56.402Z (6 months ago)
- Topics: einkommensteuer, germany, health-insurance, income-tax, steuer, tax
- Language: TypeScript
- Homepage: https://jsr.io/@vwkd/income-tax-de
- Size: 43 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# README
Einkommensteuerrechner für Deutschland
## Funktionen
- berechne Steuerbetrag, Durchschnittssteuersatz und Grenzsteuersatz für zu versteuerndes Einkommen
- sample Punkte für Plot
- nominale und reale Werte
## Benutzung
```ts
import { IncomeTax } from "@vwkd/income-tax-de";
import { Inflation } from "@vwkd/inflation";
const year = 2020;
const zvE = 14_533;
const inflation = new Inflation("DE");
const incomeTax = new IncomeTax(year, inflation);
console.log(incomeTax.amount(zvE)); // 973.03
console.log(incomeTax.rateAverage(zvE)); // 0.0669
console.log(incomeTax.rateMargin(zvE)); // 0.2397
```