Skip to content

Instantly share code, notes, and snippets.

@heorhii1
Created June 10, 2020 12:04
Show Gist options
  • Save heorhii1/54735892b6a28eb61188494df88fc666 to your computer and use it in GitHub Desktop.
Save heorhii1/54735892b6a28eb61188494df88fc666 to your computer and use it in GitHub Desktop.
Stripe countries with codes (2020)
export const countries = [
{country: 'Australia', code: 'AU'},
{country: 'Austria', code: 'AT'},
{country: 'Belgium', code: 'BE'},
{country: 'Bulgaria', code: 'BG'},
{country: 'Brazil ', code: 'BR'},
{country: 'Canada', code: 'CA'},
{country: 'Czech Republic ', code: 'CZ'},
{country: 'Cyprus', code: 'CY'},
{country: 'Denmark', code: 'DK'},
{country: 'Estonia', code: 'DK'},
{country: 'Finland', code: 'FI'},
{country: 'France', code: 'FR'},
{country: 'Germany', code: 'DE'},
{country: 'Greece', code: 'GR'},
{country: 'Hong Kong', code: 'HK'},
{country: 'India', code: 'IN'},
{country: 'Ireland', code: 'IE'},
{country: 'Italy', code: 'IT'},
{country: 'Japan', code: 'JP'},
{country: 'Lithuania', code: 'LT'},
{country: 'Latvia', code: 'LV'},
{country: 'Luxembourg', code: 'LU'},
{country: 'Malaysia ', code: 'MY'},
{country: 'Malta ', code: 'MT'},
{country: 'Mexico ', code: 'MX'},
{country: 'Netherlands', code: 'NL'},
{country: 'New Zealand', code: 'NZ'},
{country: 'Norway', code: 'NO'},
{country: 'Poland', code: 'PL'},
{country: 'Portugal', code: 'PT'},
{country: 'Romania', code: 'RO'},
{country: 'Singapore', code: 'SG'},
{country: 'Slovakia', code: 'SK'},
{country: 'Slovenia', code: 'SL'},
{country: 'Spain', code: 'ES'},
{country: 'Sweden', code: 'SE'},
{country: 'Switzerland', code: 'CH'},
{country: 'United Kingdom', code: 'GB'},
{country: 'United States', code: 'US'},
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment