View stripe.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// https://stripe.com/docs/currencies#zero-decimal | |
const isZeroDecimalCurrency = (currency: string) => | |
[ | |
'BIF', | |
'CLP', | |
'DJF', | |
'GNF', | |
'JPY', | |
'KMF', | |
'KRW', |
View taxIdTypes.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export const taxIdTypes = [ | |
{ | |
type: 'ae_trn', | |
code: 'AE TRN', | |
name: 'United Arab Emirates', | |
emoji: '🇦🇪', | |
placeholder: '123456789012345', | |
}, | |
{ | |
type: 'au_abn', |