UNPKG

@dencioo/rand-emoji

Version:

A simple random emoji for generator for Node.js

8 lines (6 loc) 246 B
const emojis = ['😀', '😂', '😍', '🤔', '😎', '🎉', '🔥', '🍕', '🚀', '🐱', '🫨']; function randEmoji() { const index = Math.floor(Math.random() * emojis.length); return emojis[index]; } module.exports = randEmoji;