calculate-autonomo-irpf
Advanced tools
Comparing version 1.0.2 to 1.0.3
@@ -27,7 +27,11 @@ const sections = require("./sections") | ||
const yearly = amount - totalIrpf | ||
const monthly = yearly / 12 | ||
return { | ||
net: { | ||
yearly: numberParse(yearly), | ||
monthly: numberParse(yearly / 12) | ||
yearly: yearly, | ||
monthly: monthly, | ||
formatted: { | ||
yearly: numberParse(yearly), | ||
monthly: numberParse(monthly) | ||
} | ||
}, | ||
@@ -34,0 +38,0 @@ totalIrpf, |
{ | ||
"name": "calculate-autonomo-irpf", | ||
"version": "1.0.2", | ||
"version": "1.0.3", | ||
"main": "lib/calculate.js", | ||
"license": "MIT", | ||
"dependencies": {} | ||
"author": { | ||
"email": "juliosansossio@gmail.com", | ||
"name": "Julio Sansossio", | ||
"url": "https://github.com/Sansossio" | ||
} | ||
} |
@@ -16,4 +16,8 @@ # Calculate Spain Autonomo IRPF 2021 | ||
"net": { | ||
"yearly": "€24,234.50", | ||
"monthly": "€2,019.54" | ||
"yearly": 24234.50, | ||
"monthly": 2019.54, | ||
"formatted": { | ||
"yearly": "€24,234.50", | ||
"monthly": "€2,019.54" | ||
} | ||
}, | ||
@@ -20,0 +24,0 @@ "totalIrpf": 7765.5, |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
No contributors or author data
MaintenancePackage does not specify a list of contributors or an author in package.json.
Found 1 instance in 1 package
2620
62
1
28