country-flag-provider

## Usage ``` const provider = new CountryFlagProvider() const countryCodeGermany = 'de' const theFlagAsSVGFile = provider.getCountryFlag(countryCodeGermany) response.send(theFlagAsSVGFile) // tested successfully with express ```

Usage no npm install needed!

<script type="module">
  import countryFlagProvider from 'https://cdn.skypack.dev/country-flag-provider';
</script>

README

Serving Country Flags

Usage

    const provider = new CountryFlagProvider()
    const countryCodeGermany = 'de'
    const theFlagAsSVGFile = provider.getCountryFlag(countryCodeGermany)
    response.send(theFlagAsSVGFile) // tested successfully with express