mirror of
https://github.com/kevin-DL/services.git
synced 2026-01-11 19:04:35 +00:00
13 lines
342 B
JavaScript
Executable File
13 lines
342 B
JavaScript
Executable File
const { EmojiService } = require("m3o/emoji");
|
|
|
|
// Get the flag for a country. Requires country code e.g GB for great britain
|
|
async function getFlagByCountryCode() {
|
|
let emojiService = new EmojiService(process.env.MICRO_API_TOKEN);
|
|
let rsp = await emojiService.flag({
|
|
alias: "GB",
|
|
});
|
|
console.log(rsp);
|
|
}
|
|
|
|
getFlagByCountryCode();
|