Skip to content

Instantly share code, notes, and snippets.

@baptisteArno
Created June 2, 2022 08:11
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 baptisteArno/d8e93b8be05bb670966b1e37fbf49104 to your computer and use it in GitHub Desktop.
Save baptisteArno/d8e93b8be05bb670966b1e37fbf49104 to your computer and use it in GitHub Desktop.
Function to check if currency is "zero-decimal" - Stripe
// https://stripe.com/docs/currencies#zero-decimal
const isZeroDecimalCurrency = (currency: string) =>
[
'BIF',
'CLP',
'DJF',
'GNF',
'JPY',
'KMF',
'KRW',
'MGA',
'PYG',
'RWF',
'UGX',
'VND',
'VUV',
'XAF',
'XOF',
'XPF',
].includes(currency)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment