mirror of
https://github.com/kevin-DL/services.git
synced 2026-01-12 03:05:14 +00:00
14 lines
390 B
JavaScript
Executable File
14 lines
390 B
JavaScript
Executable File
const { EmojiService } = require("m3o/emoji");
|
|
|
|
// Print text and renders the emojis with aliases e.g
|
|
// let's grab a :beer: becomes let's grab a 🍺
|
|
async function printTextIncludingEmoji() {
|
|
let emojiService = new EmojiService(process.env.MICRO_API_TOKEN);
|
|
let rsp = await emojiService.print({
|
|
text: "let's grab a :beer:",
|
|
});
|
|
console.log(rsp);
|
|
}
|
|
|
|
printTextIncludingEmoji();
|