UNPKG
@dencioo/rand-emoji
Version:
latest (1.0.0)
1.0.0
A simple random emoji for generator for Node.js
@dencioo/rand-emoji
/
index.js
8 lines
(6 loc)
•
246 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
const
emojis = [
'😀'
,
'😂'
,
'😍'
,
'🤔'
,
'😎'
,
'🎉'
,
'🔥'
,
'🍕'
,
'🚀'
,
'🐱'
,
'🫨'
];
function
randEmoji
(
) {
const
index =
Math
.
floor
(
Math
.
random
() * emojis.
length
);
return
emojis[index]; }
module
.
exports
= randEmoji;