UNPKG

emojicoder

Version:

A package that converts regular text into emoji-representative text. For instance, it can turn "I love pizza" into "I ❤️ 🍕".

10 lines (7 loc) 289 B
const emojiDictionary = require('./emojiDictionary.json'); function encodeToEmoji(text) { const words = text.split(" "); const textWithEmojis = words.map(word => emojiDictionary[word.toLowerCase()] || word); return textWithEmojis.join(" "); } module.exports = encodeToEmoji;