1.1.0 • Published 6 years ago
emoji-country-code v1.1.0
emoji-country-code
Transform ISO 3166-1 country codes to Emoji flags
Installation
Installation is the same as any other npm module.
yarn add emoji-country-codeor
npm install --save emoji-country-codeUsage
In an ES6+ environment you can either import the named export
import { fromCountryCode } from 'emoji-country-code'or use the default export
import flagEmoji from 'emoji-country-code'CommonJS and UMD builds are available as well.
API
To transform a country code like BD to 🇧🇩, just call the fromCountryCode function
const flag = flagEmoji.fromCountryCode('BD') //=> 🇧🇩That's about it! Use it however you like 🚀