paypal-fee
v0.2.0
Published
Calculate PayPal fees
Downloads
14
Readme
paypal-fee
NOTE: PayPal has significantly changed their fee structure, this module needs to be rewritten to be useful as of today.
features
- Written in TypeScript
- Less than 2kB of code
- No runtime dependencies
- Supports ESM and CommonJS
- Comprehensive integration tests
requirements
- Node 16+
usage
To use this module, simply install it using your favorite package manager and then import the calculateFee
function.
calculateFee
takes a payment value in USD and a PaymentType
, and returns a fee amount in USD.
Payment types are as follows:
example
import { calculateFee, PaymentType } from 'paypal-fee';
const fee = calculateFee(100, PaymentType.GoodsAndServices);
console.log(fee);
will output 3.98
.