Skip to content

Latest commit

 

History

History
18 lines (14 loc) · 563 Bytes

README.md

File metadata and controls

18 lines (14 loc) · 563 Bytes

Emojity

Emojity is a module that allows you to quickly transform a word into emoji arrays

Installation:

npm i emojity

Importing to your code:

const { emojity } = require("emojity");

Generating an array:

const { emojity } = require('emojity');
let EmojiArray = emojity.getEmojis('Emojity');

EmojiArray:

['🇪', '🇲', '🇴', '🇯', '🇮', '🇹', '🇾']

Example application:

  • Creating emoji response to the right word using Discord.js

Usage