-
Notifications
You must be signed in to change notification settings - Fork 0
/
emoji_map.js
30 lines (28 loc) · 1.16 KB
/
emoji_map.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
const emoji_map= new (function(){
this.shrug='\u{1F937}';
this.footprints='\u{1F463}'
this['Right Pointing Backhand Index']='\u{1F449}';
this['backhand index pointing left']='\u{1f448}'
this.follow=`${this.footprints}\u{1F449}`;
this.eyebrow='\u{1F928}';
this.redx='\u{274C}'
this.didnotmeet=`${this.eyebrow}${this.redx}\u{1F9D1}\u{200D}\u{1F91D}\u{200D}\u{1F9D1}`;
this.mydeath= `${this.follow} \u{1F480}`
this.hurryup='\u{1F3C3}\u{2B06}'
this.down='\u{2935}';
this.yes='\u{2714}'
this.eyes='\u{1F440}'
this.around='\u{1F503}'
this.dontlookbehind=`${this.eyes}${this.redx}${this.around}`
this.fallapart='\u{23F2}\u{1F3C3}\u{200D}\u{2642}\u{FE0F}\u{2B07}'
this.staylow='\u{2699}\u{2B07}'
this.overtheedge='\u{2699}\u{2935}\u{1FA82}\u{1F4FF}'
this.wait='\u{231B}\u{270B}'
this.compass='\u{1F9ED}'
this.shamrock='\u{2618}'
this.whichway=`${this["backhand index pointing left"]}${this.compass}${this["Right Pointing Backhand Index"]}`
this['waving hand']='\u{1F44B}';
this.detective='\u{1F575}'
this.hime = `${this['waving hand']}${this.detective}`
})()
module.exports = emoji_map