emoji-flags-to-country
TypeScript icon, indicating that this package has built-in type declarations

2.4.2 • Public • Published

Emoji country flags to country code

Coverage Status Maintainability npm Donate

NPM

Convert emoji country flags to country code ISO 3166.

Install

npm i emoji-flags-to-country

Example

const { flagToCountry, getFlagsInText } = require('emoji-flags-to-country');

const result1 = flagToCountry('🇮🇹');
const result2 = flagToCountry('🇺🇸');
const result3 = flagToCountry('🇪🇸');
console.log(result1); // IT
console.log(result2); // US
console.log(result3); // ES

const result4 = getFlagsInText('This text has 🇺🇸 emoji flags 🇮🇹');
console.log(result4); // ['🇺🇸', '🇮🇹'];

Run tests

npm test

Run lint

npm run lint

Author

Package Sidebar

Install

npm i emoji-flags-to-country

Weekly Downloads

45

Version

2.4.2

License

MIT

Unpacked Size

12.9 kB

Total Files

12

Last publish

Collaborators

  • davideviolante