Security News
Input Validation Vulnerabilities Dominate MITRE's 2024 CWE Top 25 List
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
car-tax-calculations
Advanced tools
Little util to calculate claimable cost of car mileage for different jurisdictions.
Little util to calculate claimable cost of car mileage for different jurisdictions.
npm install car-tax-calculations
const { getTaxClaimableMileage } = require('car-tax-calculations');
const { claimableAmount, claimableDistance, currency, distanceUnit } = getTaxClaimableMileage({ taxType: 'ATO_non_logbook', kmTravelled: 100 });
/* Output:
{
claimableAmount: 68,
claimableDistance: 100,
currency: 'AUD',
distanceUnit: 'km'
}
*/
taxType | Description |
---|---|
ATO_non_logbook | Australian Taxation Office non logbook calculation method (capped at 5000km) |
IRS | US Internal Revenue Service |
Canada_Revenue_Agency | Canada Revenue Agency |
Germany | Mileage claim for Germany |
UK_HMRC | UK Her Majesty's Revenue Service |
custom | Custom calculation method (see custom) |
If none of the existing options meet your needs, you can do a custom calculation.
// Calculate claimable tax for the lambo you're driving in the Libertarian utopia you paid citizenship for with BTC
const rateTiers = [
{
maxDistanceForThisTier: 8000,
ratePerDistanceUnit: 0.42
},
{
maxDistanceForThisTier: Infinity,
ratePerDistanceUnit: 0.52
}
];
const {
claimableAmount,
claimableDistance,
currency,
distanceUnit
} = getTaxClaimableMileage({
taxType: "custom",
kmTravelled: 15122,
currency: "BTC",
distanceUnit: "earth to moon hops",
rateTiers
});
/* Output:
{
claimableAmount: 7063.4,
claimableDistance: 15122,
currency: 'BTC',
distanceUnit: 'earth to moon hops'
}
*/
We always use km as the base unit. Sorry fans of miles - we're Australian and that's how we roll.
FAQs
Little util to calculate claimable cost of car mileage for different jurisdictions.
The npm package car-tax-calculations receives a total of 2 weekly downloads. As such, car-tax-calculations popularity was classified as not popular.
We found that car-tax-calculations demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.