You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 line
211B

  1. export const TAX_RATE_DEFAULT = 0.1;
  2. /**
  3. * 内税計算
  4. */
  5. export function calcInnerTax(
  6. totalAmount: number,
  7. rate: number = TAX_RATE_DEFAULT
  8. ) {
  9. return Math.floor((totalAmount * rate) / (1 + rate));
  10. }