Skip to content

Instantly share code, notes, and snippets.

View anton-isaykin's full-sized avatar
🎯
Focusing

Anton Isaykin anton-isaykin

🎯
Focusing
View GitHub Profile
@anton-isaykin
anton-isaykin / publicFee.js
Created July 15, 2019 12:24
Fee to cover calculations
// AMEX payments percent of total count payments
export const AMEX_PERCENT = 0.1;
// AMEX 3.5% fee
const AMEX_FEE = 0.035;
// USD/USD
const USD_RATE = 1;
// fixed stripe fee 30c
const FIXED_STRIPE_FEE = 0.3;
/**