• Returns an array of country objects with country codes and names.

    Parameters

    • locale: string

      The locale to use for formatting the country names.

    Returns Country[]

    An array of country objects.

    console.log(getCountries('en'));
    // [
    // { code: 'AD', name: 'Andorra' },
    // { code: 'AE', name: 'United Arab Emirates' },
    // { code: 'AF', name: 'Afghanistan' },
    // ...
    // ]