Skip to content

Instantly share code, notes, and snippets.

@marr
Last active March 15, 2018 19:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save marr/ac48aead8b5a93210a2ad4d2ec32f651 to your computer and use it in GitHub Desktop.
Save marr/ac48aead8b5a93210a2ad4d2ec32f651 to your computer and use it in GitHub Desktop.
export const getTaxAmount = (rate, total) => {
const totalCents = parseInt(total * 100, 10);
const tax = Math.round(totalCents / (1 + rate) * rate);
return {
subtotal: (totalCents - tax) / 100,
tax: tax / 100,
total,
};
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment