A node module to calculate vehicle tax rates for cars and vans in the UK based on the fuel type, engine size and when the vehicle was registered.
npm install uk-car-tax-calculator
const calculateTax = require('uk-car-tax-calculator') // or es modules
const tax = calculateTax({
registrationDate: new Date(2001, 3, 1),
co2: 201,
fuel: 'Hybrid'
})
console.log(tax.price) // prints 315For a more comprehensive guide to usage check test/index.test.js
PRs accepted, especially those concerning updates to UK law.
This project is linted with eslint using prettier, and runs tests with jest - these will need to pass before any PR is accepted.