@identity-js/string-identity 1.1.0 → 1.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -0
- package/index.js +724 -724
- package/package.json +346 -346
package/index.js
CHANGED
|
@@ -1,725 +1,725 @@
|
|
|
1
|
-
// UTILS
|
|
2
|
-
var generalConcat = require("general-concat")
|
|
3
|
-
var splitString = require("string.prototype.split")
|
|
4
|
-
var eqstrings = require("eq-strings")
|
|
5
|
-
var isWDS = require("@overkill/is-wds").isWDS
|
|
6
|
-
var { immediateError, ErrorType } = require("immediate-error")
|
|
7
|
-
var getIntrinsic = require("get-intrinsic")
|
|
8
|
-
var $String = getIntrinsic("%String%")
|
|
9
|
-
var fromCharCode = getIntrinsic("%String.fromCharCode%")
|
|
10
|
-
var isString = require("is-string")
|
|
11
|
-
|
|
12
|
-
// LOWERCASE LETTERS
|
|
13
|
-
var lowercase_a = require("@lowercase-letters/a") // "a"
|
|
14
|
-
var lowercase_b = require("@lowercase-letters/b") // "b"
|
|
15
|
-
var lowercase_c = require("@lowercase-letters/c") // "c"
|
|
16
|
-
var lowercase_d = require("@lowercase-letters/d") // "d"
|
|
17
|
-
var lowercase_e = require("@lowercase-letters/e") // "e"
|
|
18
|
-
var lowercase_f = require("@lowercase-letters/f") // "f"
|
|
19
|
-
var lowercase_g = require("@lowercase-letters/g") // "g"
|
|
20
|
-
var lowercase_h = require("@lowercase-letters/h") // "h"
|
|
21
|
-
var lowercase_i = require("@lowercase-letters/i") // "i"
|
|
22
|
-
var lowercase_j = require("@lowercase-letters/j") // "j"
|
|
23
|
-
var lowercase_k = require("@lowercase-letters/k") // "k"
|
|
24
|
-
var lowercase_l = require("@lowercase-letters/l") // "l"
|
|
25
|
-
var lowercase_m = require("@lowercase-letters/m") // "m"
|
|
26
|
-
var lowercase_n = require("@lowercase-letters/n") // "n"
|
|
27
|
-
var lowercase_o = require("@lowercase-letters/o") // "o"
|
|
28
|
-
var lowercase_p = require("@lowercase-letters/p") // "p"
|
|
29
|
-
var lowercase_q = require("@lowercase-letters/q") // "q"
|
|
30
|
-
var lowercase_r = require("@lowercase-letters/r") // "r"
|
|
31
|
-
var lowercase_s = require("@lowercase-letters/s") // "s"
|
|
32
|
-
var lowercase_t = require("@lowercase-letters/t") // "t"
|
|
33
|
-
var lowercase_u = require("@lowercase-letters/u") // "u"
|
|
34
|
-
var lowercase_v = require("@lowercase-letters/v") // "v"
|
|
35
|
-
var lowercase_w = require("@lowercase-letters/w") // "w"
|
|
36
|
-
var lowercase_x = require("@lowercase-letters/x") // "x"
|
|
37
|
-
var lowercase_y = require("@lowercase-letters/y") // "y"
|
|
38
|
-
var lowercase_z = require("@lowercase-letters/z") // "z"
|
|
39
|
-
|
|
40
|
-
// UPPERCASE LETTERS
|
|
41
|
-
var uppercase_a = require("@uppercase-letters/a") // "A"
|
|
42
|
-
var uppercase_b = require("@uppercase-letters/b") // "B"
|
|
43
|
-
var uppercase_c = require("@uppercase-letters/c") // "C"
|
|
44
|
-
var uppercase_d = require("@uppercase-letters/d") // "D"
|
|
45
|
-
var uppercase_e = require("@uppercase-letters/e") // "E"
|
|
46
|
-
var uppercase_f = require("@uppercase-letters/f") // "F"
|
|
47
|
-
var uppercase_g = require("@uppercase-letters/g") // "G"
|
|
48
|
-
var uppercase_h = require("@uppercase-letters/h") // "H"
|
|
49
|
-
var uppercase_i = require("@uppercase-letters/i") // "I"
|
|
50
|
-
var uppercase_j = require("@uppercase-letters/j") // "J"
|
|
51
|
-
var uppercase_k = require("@uppercase-letters/k") // "K"
|
|
52
|
-
var uppercase_l = require("@uppercase-letters/l") // "L"
|
|
53
|
-
var uppercase_m = require("@uppercase-letters/m") // "M"
|
|
54
|
-
var uppercase_n = require("@uppercase-letters/n") // "N"
|
|
55
|
-
var uppercase_o = require("@uppercase-letters/o") // "O"
|
|
56
|
-
var uppercase_p = require("@uppercase-letters/p") // "P"
|
|
57
|
-
var uppercase_q = require("@uppercase-letters/q") // "Q"
|
|
58
|
-
var uppercase_r = require("@uppercase-letters/r") // "R"
|
|
59
|
-
var uppercase_s = require("@uppercase-letters/s") // "S"
|
|
60
|
-
var uppercase_t = require("@uppercase-letters/t") // "T"
|
|
61
|
-
var uppercase_u = require("@uppercase-letters/u") // "U"
|
|
62
|
-
var uppercase_v = require("@uppercase-letters/v") // "V"
|
|
63
|
-
var uppercase_w = require("@uppercase-letters/w") // "W"
|
|
64
|
-
var uppercase_x = require("@uppercase-letters/x") // "X"
|
|
65
|
-
var uppercase_y = require("@uppercase-letters/y") // "Y"
|
|
66
|
-
var uppercase_z = require("@uppercase-letters/z") // "Z"
|
|
67
|
-
|
|
68
|
-
// ALPHABET
|
|
69
|
-
var lowercase_alphabet = generalConcat(
|
|
70
|
-
lowercase_a,
|
|
71
|
-
lowercase_b,
|
|
72
|
-
lowercase_c,
|
|
73
|
-
lowercase_d,
|
|
74
|
-
lowercase_e,
|
|
75
|
-
lowercase_f,
|
|
76
|
-
lowercase_g,
|
|
77
|
-
lowercase_h,
|
|
78
|
-
lowercase_i,
|
|
79
|
-
lowercase_j,
|
|
80
|
-
lowercase_k,
|
|
81
|
-
lowercase_l,
|
|
82
|
-
lowercase_m,
|
|
83
|
-
lowercase_n,
|
|
84
|
-
lowercase_o,
|
|
85
|
-
lowercase_p,
|
|
86
|
-
lowercase_q,
|
|
87
|
-
lowercase_r,
|
|
88
|
-
lowercase_s,
|
|
89
|
-
lowercase_t,
|
|
90
|
-
lowercase_u,
|
|
91
|
-
lowercase_v,
|
|
92
|
-
lowercase_w,
|
|
93
|
-
lowercase_x,
|
|
94
|
-
lowercase_y,
|
|
95
|
-
lowercase_z
|
|
96
|
-
)
|
|
97
|
-
var uppercase_alphabet = generalConcat(
|
|
98
|
-
uppercase_a,
|
|
99
|
-
uppercase_b,
|
|
100
|
-
uppercase_c,
|
|
101
|
-
uppercase_d,
|
|
102
|
-
uppercase_e,
|
|
103
|
-
uppercase_f,
|
|
104
|
-
uppercase_g,
|
|
105
|
-
uppercase_h,
|
|
106
|
-
uppercase_i,
|
|
107
|
-
uppercase_j,
|
|
108
|
-
uppercase_k,
|
|
109
|
-
uppercase_l,
|
|
110
|
-
uppercase_m,
|
|
111
|
-
uppercase_n,
|
|
112
|
-
uppercase_o,
|
|
113
|
-
uppercase_p,
|
|
114
|
-
uppercase_q,
|
|
115
|
-
uppercase_r,
|
|
116
|
-
uppercase_s,
|
|
117
|
-
uppercase_t,
|
|
118
|
-
uppercase_u,
|
|
119
|
-
uppercase_v,
|
|
120
|
-
uppercase_w,
|
|
121
|
-
uppercase_x,
|
|
122
|
-
uppercase_y,
|
|
123
|
-
uppercase_z
|
|
124
|
-
)
|
|
125
|
-
|
|
126
|
-
// OTHER RANDOM STRINGS
|
|
127
|
-
var fizz = require("string-fizz") // "fizz"
|
|
128
|
-
var buzz = require("string-buzz") // "buzz"
|
|
129
|
-
var fizzbuzz = require("string-fizzbuzz") // "fizzbuzz"
|
|
130
|
-
var creashaks = require("string-creashaks") // "creashaks"
|
|
131
|
-
var organzine = require("string-organzine") // "organzine"
|
|
132
|
-
var creashaksOrganzine = require("string-creashaks-organzine") // "creashaks organzine"
|
|
133
|
-
var emptyString = require("empty-string") // ""
|
|
134
|
-
var space = require("space-string") // " "
|
|
135
|
-
|
|
136
|
-
// EMOJIS
|
|
137
|
-
var emojis = {
|
|
138
|
-
"emoji-100": require("emoji-100"), // "💯"
|
|
139
|
-
"emoji-1234": require("emoji-1234"), // "🔢"
|
|
140
|
-
"emoji-abcd": require("emoji-abcd"), // "🔡"
|
|
141
|
-
"emoji-airplane-departure": require("emoji-airplane-departure"), // "🛫"
|
|
142
|
-
"emoji-alembic": require("emoji-alembic"), // "⚗"
|
|
143
|
-
"emoji-ant": require("emoji-ant"), // "🐜"
|
|
144
|
-
"emoji-apple": require("emoji-apple"), // "🍎"
|
|
145
|
-
"emoji-articulated-lorry": require("emoji-articulated-lorry"), // "🚛"
|
|
146
|
-
"emoji-bar-chart": require("emoji-bar-chart"), // "📊"
|
|
147
|
-
"emoji-basketball": require("emoji-basketball"), // "🏀"
|
|
148
|
-
"emoji-bath": require("emoji-bath"), // "🛀"
|
|
149
|
-
"emoji-blue-book": require("emoji-blue-book"), // "📘"
|
|
150
|
-
"emoji-bookmark-tabs": require("emoji-bookmark-tabs"), // "📑"
|
|
151
|
-
"emoji-bread": require("emoji-bread"), // "🍞"
|
|
152
|
-
"emoji-bulb": require("emoji-bulb"), // "💡"
|
|
153
|
-
"emoji-camping": require("emoji-camping"), // "🏕"
|
|
154
|
-
"emoji-candle": require("emoji-candle"), // "🕯"
|
|
155
|
-
"emoji-car": require("emoji-car"), // "🚗"
|
|
156
|
-
"emoji-card-index-dividers": require("emoji-card-index-dividers"), // "🗂"
|
|
157
|
-
"emoji-cat": require("emoji-cat"), // "🐱"
|
|
158
|
-
"emoji-cd": require("emoji-cd"), // "💿"
|
|
159
|
-
"emoji-champagne": require("emoji-champagne"), // "🍾"
|
|
160
|
-
"emoji-checkered-flag": require("emoji-checkered-flag"), // "🏁"
|
|
161
|
-
"emoji-cherry-blossom": require("emoji-cherry-blossom"), // "🌸"
|
|
162
|
-
"emoji-city-sunrise": require("emoji-city-sunrise"), // "🌇"
|
|
163
|
-
"emoji-cityscape": require("emoji-cityscape"), // "🏙"
|
|
164
|
-
"emoji-clapper": require("emoji-clapper"), // "🎬"
|
|
165
|
-
"emoji-clock1": require("emoji-clock1"), // "🕐"
|
|
166
|
-
"emoji-clock10": require("emoji-clock10"), // "🕙"
|
|
167
|
-
"emoji-clock12": require("emoji-clock12"), // "🕛"
|
|
168
|
-
"emoji-clock3": require("emoji-clock3"), // "🕒"
|
|
169
|
-
"emoji-clock330": require("emoji-clock330"), // "🕞"
|
|
170
|
-
"emoji-clock530": require("emoji-clock530"), // "🕠"
|
|
171
|
-
"emoji-clock6": require("emoji-clock6"), // "🕕"
|
|
172
|
-
"emoji-clock630": require("emoji-clock630"), // "🕡"
|
|
173
|
-
"emoji-clock830": require("emoji-clock830"), // "🕣"
|
|
174
|
-
"emoji-clock9": require("emoji-clock9"), // "🕘"
|
|
175
|
-
"emoji-cocktail": require("emoji-cocktail"), // "🍸"
|
|
176
|
-
"emoji-coffee": require("emoji-coffee"), // "☕️"
|
|
177
|
-
"emoji-comet": require("emoji-comet"), // "☄"
|
|
178
|
-
"emoji-compression": require("emoji-compression"), // "🗜"
|
|
179
|
-
"emoji-computer": require("emoji-computer"), // "💻"
|
|
180
|
-
"emoji-construction": require("emoji-construction"), // "🚧"
|
|
181
|
-
"emoji-control-knobs": require("emoji-control-knobs"), // "🎛"
|
|
182
|
-
"emoji-cop": require("emoji-cop"), // "👮"
|
|
183
|
-
"emoji-copyright": require("emoji-copyright"), // "©️"
|
|
184
|
-
"emoji-crab": require("emoji-crab"), // "🦀"
|
|
185
|
-
"emoji-crescent-moon": require("emoji-crescent-moon"), // "🌙"
|
|
186
|
-
"emoji-crossed-flags": require("emoji-crossed-flags"), // "🎌"
|
|
187
|
-
"emoji-cry": require("emoji-cry"), // "😢"
|
|
188
|
-
"emoji-crystal-ball": require("emoji-crystal-ball"), // "🔮"
|
|
189
|
-
"emoji-currency-exchange": require("emoji-currency-exchange"), // "💱"
|
|
190
|
-
"emoji-dark-sunglasses": require("emoji-dark-sunglasses"), // "🕶"
|
|
191
|
-
"emoji-dart": require("emoji-dart"), // "🎯"
|
|
192
|
-
"emoji-de": require("emoji-de"), // "🇩🇪"
|
|
193
|
-
"emoji-department-store": require("emoji-department-store"), // "🏬"
|
|
194
|
-
"emoji-door": require("emoji-door"), // "🚪"
|
|
195
|
-
"emoji-doughnut": require("emoji-doughnut"), // "🍩"
|
|
196
|
-
"emoji-egg": require("emoji-egg"), // "🍳"
|
|
197
|
-
"emoji-eight-pointed-black-star": require("emoji-eight-pointed-black-star"), // "✴️"
|
|
198
|
-
"emoji-eight-spoked-asterisk": require("emoji-eight-spoked-asterisk"), // "✳️"
|
|
199
|
-
"emoji-envelope-with-arrow": require("emoji-envelope-with-arrow"), // "📩"
|
|
200
|
-
"emoji-es": require("emoji-es"), // "🇪🇸"
|
|
201
|
-
"emoji-euro": require("emoji-euro"), // "💶"
|
|
202
|
-
"emoji-eyeglasses": require("emoji-eyeglasses"), // "👓"
|
|
203
|
-
"emoji-eyes": require("emoji-eyes"), // "👀"
|
|
204
|
-
"emoji-family": require("emoji-family"), // "👨👩👦"
|
|
205
|
-
"emoji-film-projector": require("emoji-film-projector"), // "📽"
|
|
206
|
-
"emoji-fire": require("emoji-fire"), // "🔥"
|
|
207
|
-
"emoji-fire-engine": require("emoji-fire-engine"), // "🚒"
|
|
208
|
-
"emoji-fireworks": require("emoji-fireworks"), // "🎆"
|
|
209
|
-
"emoji-fish": require("emoji-fish"), // "🐟"
|
|
210
|
-
"emoji-flag-ag": require("emoji-flag-ag"), // "🇦🇬"
|
|
211
|
-
"emoji-flag-am": require("emoji-flag-am"), // "🇦🇲"
|
|
212
|
-
"emoji-flag-ax": require("emoji-flag-ax"), // "🇦🇽"
|
|
213
|
-
"emoji-flag-bz": require("emoji-flag-bz"), // "🇧🇿"
|
|
214
|
-
"emoji-flag-cm": require("emoji-flag-cm"), // "🇨🇲"
|
|
215
|
-
"emoji-flag-cx": require("emoji-flag-cx"), // "🇨🇽"
|
|
216
|
-
"emoji-flag-ee": require("emoji-flag-ee"), // "🇪🇪"
|
|
217
|
-
"emoji-flag-es": require("emoji-flag-es"), // "🇪🇸"
|
|
218
|
-
"emoji-flag-ga": require("emoji-flag-ga"), // "🇬🇦"
|
|
219
|
-
"emoji-flag-gu": require("emoji-flag-gu"), // "🇬🇺"
|
|
220
|
-
"emoji-flag-je": require("emoji-flag-je"), // "🇯🇪"
|
|
221
|
-
"emoji-flag-kh": require("emoji-flag-kh"), // "🇰🇭"
|
|
222
|
-
"emoji-flag-kn": require("emoji-flag-kn"), // "🇰🇳"
|
|
223
|
-
"emoji-flag-na": require("emoji-flag-na"), // "🇳🇦"
|
|
224
|
-
"emoji-flag-nu": require("emoji-flag-nu"), // "🇳🇺"
|
|
225
|
-
"emoji-flag-pf": require("emoji-flag-pf"), // "🇵🇫"
|
|
226
|
-
"emoji-flag-pr": require("emoji-flag-pr"), // "🇵🇷"
|
|
227
|
-
"emoji-flag-pt": require("emoji-flag-pt"), // "🇵🇹"
|
|
228
|
-
"emoji-flag-sh": require("emoji-flag-sh"), // "🇸🇭"
|
|
229
|
-
"emoji-flag-so": require("emoji-flag-so"), // "🇸🇴"
|
|
230
|
-
"emoji-flag-ss": require("emoji-flag-ss"), // "🇸🇸"
|
|
231
|
-
"emoji-flag-vu": require("emoji-flag-vu"), // "🇻🇺"
|
|
232
|
-
"emoji-flag-wf": require("emoji-flag-wf"), // "🇼🇫"
|
|
233
|
-
"emoji-flag-ws": require("emoji-flag-ws"), // "🇼🇸"
|
|
234
|
-
"emoji-fleur-de-lis": require("emoji-fleur-de-lis"), // "⚜"
|
|
235
|
-
"emoji-foggy": require("emoji-foggy"), // "🌁"
|
|
236
|
-
"emoji-footprints": require("emoji-footprints"), // "👣"
|
|
237
|
-
"emoji-full-moon": require("emoji-full-moon"), // "🌕"
|
|
238
|
-
"emoji-funeral-urn": require("emoji-funeral-urn"), // "⚱"
|
|
239
|
-
"emoji-goat": require("emoji-goat"), // "🐐"
|
|
240
|
-
"emoji-golf": require("emoji-golf"), // "⛳️"
|
|
241
|
-
"emoji-green-apple": require("emoji-green-apple"), // "🍏"
|
|
242
|
-
"emoji-gun": require("emoji-gun"), // "🔫"
|
|
243
|
-
"emoji-haircut": require("emoji-haircut"), // "💇"
|
|
244
|
-
"emoji-hamster": require("emoji-hamster"), // "🐹"
|
|
245
|
-
"emoji-hash": require("emoji-hash"), // "#️⃣"
|
|
246
|
-
"emoji-headphones": require("emoji-headphones"), // "🎧"
|
|
247
|
-
"emoji-heartbeat": require("emoji-heartbeat"), // "💓"
|
|
248
|
-
"emoji-hearts": require("emoji-hearts"), // "♥️"
|
|
249
|
-
"emoji-heavy-check-mark": require("emoji-heavy-check-mark"), // "✔️"
|
|
250
|
-
"emoji-helicopter": require("emoji-helicopter"), // "🚁"
|
|
251
|
-
"emoji-herb": require("emoji-herb"), // "🌿"
|
|
252
|
-
"emoji-hocho": require("emoji-hocho"), // "🔪"
|
|
253
|
-
"emoji-hotdog": require("emoji-hotdog"), // "🌭"
|
|
254
|
-
"emoji-hotel": require("emoji-hotel"), // "🏨"
|
|
255
|
-
"emoji-hotsprings": require("emoji-hotsprings"), // "♨️"
|
|
256
|
-
"emoji-house": require("emoji-house"), // "🏠"
|
|
257
|
-
"emoji-inbox-tray": require("emoji-inbox-tray"), // "📥"
|
|
258
|
-
"emoji-information-source": require("emoji-information-source"), // "ℹ️"
|
|
259
|
-
"emoji-innocent": require("emoji-innocent"), // "😇"
|
|
260
|
-
"emoji-izakaya-lantern": require("emoji-izakaya-lantern"), // "🏮"
|
|
261
|
-
"emoji-japan": require("emoji-japan"), // "🗾"
|
|
262
|
-
"emoji-japanese-castle": require("emoji-japanese-castle"), // "🏯"
|
|
263
|
-
"emoji-joy": require("emoji-joy"), // "😂"
|
|
264
|
-
"emoji-keyboard": require("emoji-keyboard"), // "⌨"
|
|
265
|
-
"emoji-keycap-star": require("emoji-keycap-star"), // "*⃣"
|
|
266
|
-
"emoji-kissing": require("emoji-kissing"), // "😗"
|
|
267
|
-
"emoji-kissing-heart": require("emoji-kissing-heart"), // "😘"
|
|
268
|
-
"emoji-knife-fork-plate": require("emoji-knife-fork-plate"), // "🍽"
|
|
269
|
-
"emoji-koko": require("emoji-koko"), // "🈁"
|
|
270
|
-
"emoji-lantern": require("emoji-lantern"), // "🏮"
|
|
271
|
-
"emoji-laughing": require("emoji-laughing"), // "😆"
|
|
272
|
-
"emoji-leaves": require("emoji-leaves"), // "🍃"
|
|
273
|
-
"emoji-left-luggage": require("emoji-left-luggage"), // "🛅"
|
|
274
|
-
"emoji-libra": require("emoji-libra"), // "♎️"
|
|
275
|
-
"emoji-lightning": require("emoji-lightning"), // "🌩"
|
|
276
|
-
"emoji-lollipop": require("emoji-lollipop"), // "🍭"
|
|
277
|
-
"emoji-love-letter": require("emoji-love-letter"), // "💌"
|
|
278
|
-
"emoji-lower-left-ballpoint-pen": require("emoji-lower-left-ballpoint-pen"), // "🖊"
|
|
279
|
-
"emoji-mag": require("emoji-mag"), // "🔍"
|
|
280
|
-
"emoji-mahjong": require("emoji-mahjong"), // "🀄️"
|
|
281
|
-
"emoji-man-and-woman-holding-hands": require("emoji-man-and-woman-holding-hands"), // "👫"
|
|
282
|
-
"emoji-man-kiss-man": require("emoji-man-kiss-man"), // "👨❤️💋👨"
|
|
283
|
-
"emoji-man-man-boy-boy": require("emoji-man-man-boy-boy"), // "👨👨👦👦"
|
|
284
|
-
"emoji-man-with-turban": require("emoji-man-with-turban"), // "👳"
|
|
285
|
-
"emoji-man-woman-boy": require("emoji-man-woman-boy"), // "👨👩👦"
|
|
286
|
-
"emoji-man-woman-girl": require("emoji-man-woman-girl"), // "👨👩👧"
|
|
287
|
-
"emoji-man-woman-girl-boy": require("emoji-man-woman-girl-boy"), // "👨👩👧👦"
|
|
288
|
-
"emoji-mantelpiece-clock": require("emoji-mantelpiece-clock"), // "🕰"
|
|
289
|
-
"emoji-microphone": require("emoji-microphone"), // "🎤"
|
|
290
|
-
"emoji-middle-finger": require("emoji-middle-finger"), // "🖕"
|
|
291
|
-
"emoji-milky-way": require("emoji-milky-way"), // "🌌"
|
|
292
|
-
"emoji-money-mouth-face": require("emoji-money-mouth-face"), // "🤑"
|
|
293
|
-
"emoji-monkey-face": require("emoji-monkey-face"), // "🐵"
|
|
294
|
-
"emoji-mostly-sunny": require("emoji-mostly-sunny"), // "🌤"
|
|
295
|
-
"emoji-mount-fuji": require("emoji-mount-fuji"), // "🗻"
|
|
296
|
-
"emoji-mountain": require("emoji-mountain"), // "⛰"
|
|
297
|
-
"emoji-mouse2": require("emoji-mouse2"), // "🐁"
|
|
298
|
-
"emoji-mushroom": require("emoji-mushroom"), // "🍄"
|
|
299
|
-
"emoji-name-badge": require("emoji-name-badge"), // "📛"
|
|
300
|
-
"emoji-non-potable-water": require("emoji-non-potable-water"), // "🚱"
|
|
301
|
-
"emoji-nose": require("emoji-nose"), // "👃"
|
|
302
|
-
"emoji-o2": require("emoji-o2"), // "🅾️"
|
|
303
|
-
"emoji-om-symbol": require("emoji-om-symbol"), // "🕉"
|
|
304
|
-
"emoji-on": require("emoji-on"), // "🔛"
|
|
305
|
-
"emoji-oncoming-taxi": require("emoji-oncoming-taxi"), // "🚖"
|
|
306
|
-
"emoji-one": require("emoji-one"), // "1️⃣"
|
|
307
|
-
"emoji-outbox-tray": require("emoji-outbox-tray"), // "📤"
|
|
308
|
-
"emoji-package": require("emoji-package"), // "📦"
|
|
309
|
-
"emoji-palm-tree": require("emoji-palm-tree"), // "🌴"
|
|
310
|
-
"emoji-paperclip": require("emoji-paperclip"), // "📎"
|
|
311
|
-
"emoji-parking": require("emoji-parking"), // "🅿️"
|
|
312
|
-
"emoji-part-alternation-mark": require("emoji-part-alternation-mark"), // "〽️"
|
|
313
|
-
"emoji-passport-control": require("emoji-passport-control"), // "🛂"
|
|
314
|
-
"emoji-phone": require("emoji-phone"), // "☎️"
|
|
315
|
-
"emoji-pig": require("emoji-pig"), // "🐷"
|
|
316
|
-
"emoji-pig-nose": require("emoji-pig-nose"), // "🐽"
|
|
317
|
-
"emoji-pig2": require("emoji-pig2"), // "🐖"
|
|
318
|
-
"emoji-pill": require("emoji-pill"), // "💊"
|
|
319
|
-
"emoji-police-car": require("emoji-police-car"), // "🚓"
|
|
320
|
-
"emoji-poodle": require("emoji-poodle"), // "🐩"
|
|
321
|
-
"emoji-poop": require("emoji-poop"), // "💩"
|
|
322
|
-
"emoji-postal-horn": require("emoji-postal-horn"), // "📯"
|
|
323
|
-
"emoji-postbox": require("emoji-postbox"), // "📮"
|
|
324
|
-
"emoji-purse": require("emoji-purse"), // "👛"
|
|
325
|
-
"emoji-rainbow": require("emoji-rainbow"), // "🌈"
|
|
326
|
-
"emoji-raised-hand": require("emoji-raised-hand"), // "✋"
|
|
327
|
-
"emoji-repeat": require("emoji-repeat"), // "🔁"
|
|
328
|
-
"emoji-repeat-one": require("emoji-repeat-one"), // "🔂"
|
|
329
|
-
"emoji-rice": require("emoji-rice"), // "🍚"
|
|
330
|
-
"emoji-ring": require("emoji-ring"), // "💍"
|
|
331
|
-
"emoji-rooster": require("emoji-rooster"), // "🐓"
|
|
332
|
-
"emoji-rose": require("emoji-rose"), // "🌹"
|
|
333
|
-
"emoji-rotating-light": require("emoji-rotating-light"), // "🚨"
|
|
334
|
-
"emoji-running": require("emoji-running"), // "🏃"
|
|
335
|
-
"emoji-satellite": require("emoji-satellite"), // "🛰"
|
|
336
|
-
"emoji-saxophone": require("emoji-saxophone"), // "🎷"
|
|
337
|
-
"emoji-scorpion": require("emoji-scorpion"), // "🦂"
|
|
338
|
-
"emoji-scream": require("emoji-scream"), // "😱"
|
|
339
|
-
"emoji-secret": require("emoji-secret"), // "㊙️"
|
|
340
|
-
"emoji-shower": require("emoji-shower"), // "🚿"
|
|
341
|
-
"emoji-signal-strength": require("emoji-signal-strength"), // "📶"
|
|
342
|
-
"emoji-six": require("emoji-six"), // "6️⃣"
|
|
343
|
-
"emoji-ski": require("emoji-ski"), // "🎿"
|
|
344
|
-
"emoji-small-red-triangle": require("emoji-small-red-triangle"), // "🔺"
|
|
345
|
-
"emoji-smile": require("emoji-smile"), // "😄"
|
|
346
|
-
"emoji-smile-cat": require("emoji-smile-cat"), // "😸"
|
|
347
|
-
"emoji-smirk-cat": require("emoji-smirk-cat"), // "😼"
|
|
348
|
-
"emoji-space-invader": require("emoji-space-invader"), // "👾"
|
|
349
|
-
"emoji-sparkle": require("emoji-sparkle"), // "❇️"
|
|
350
|
-
"emoji-sparkler": require("emoji-sparkler"), // "🎇"
|
|
351
|
-
"emoji-star-and-crescent": require("emoji-star-and-crescent"), // "☪"
|
|
352
|
-
"emoji-star-of-david": require("emoji-star-of-david"), // "✡"
|
|
353
|
-
"emoji-steam-locomotive": require("emoji-steam-locomotive"), // "🚂"
|
|
354
|
-
"emoji-strawberry": require("emoji-strawberry"), // "🍓"
|
|
355
|
-
"emoji-sunflower": require("emoji-sunflower"), // "🌻"
|
|
356
|
-
"emoji-sunglasses": require("emoji-sunglasses"), // "😎"
|
|
357
|
-
"emoji-sushi": require("emoji-sushi"), // "🍣"
|
|
358
|
-
"emoji-sweat": require("emoji-sweat"), // "😓"
|
|
359
|
-
"emoji-sweat-smile": require("emoji-sweat-smile"), // "😅"
|
|
360
|
-
"emoji-synagogue": require("emoji-synagogue"), // "🕍"
|
|
361
|
-
"emoji-taxi": require("emoji-taxi"), // "🚕"
|
|
362
|
-
"emoji-tea": require("emoji-tea"), // "🍵"
|
|
363
|
-
"emoji-thinking-face": require("emoji-thinking-face"), // "🤔"
|
|
364
|
-
"emoji-three-button-mouse": require("emoji-three-button-mouse"), // "🖱"
|
|
365
|
-
"emoji-tm": require("emoji-tm"), // "™️"
|
|
366
|
-
"emoji-top": require("emoji-top"), // "🔝"
|
|
367
|
-
"emoji-trackball": require("emoji-trackball"), // "🖲"
|
|
368
|
-
"emoji-trolleybus": require("emoji-trolleybus"), // "🚎"
|
|
369
|
-
"emoji-tulip": require("emoji-tulip"), // "🌷"
|
|
370
|
-
"emoji-two": require("emoji-two"), // "2️⃣"
|
|
371
|
-
"emoji-two-men-holding-hands": require("emoji-two-men-holding-hands"), // "👬"
|
|
372
|
-
"emoji-u6709": require("emoji-u6709"), // "🈶"
|
|
373
|
-
"emoji-u7533": require("emoji-u7533"), // "🈸"
|
|
374
|
-
"emoji-umbrella-on-ground": require("emoji-umbrella-on-ground"), // "⛱"
|
|
375
|
-
"emoji-us": require("emoji-us"), // "🇺🇸"
|
|
376
|
-
"emoji-vhs": require("emoji-vhs"), // "📼"
|
|
377
|
-
"emoji-volcano": require("emoji-volcano"), // "🌋"
|
|
378
|
-
"emoji-wedding": require("emoji-wedding"), // "💒"
|
|
379
|
-
"emoji-weight-lifter": require("emoji-weight-lifter"), // "🏋"
|
|
380
|
-
"emoji-whale": require("emoji-whale"), // "🐳"
|
|
381
|
-
"emoji-white-flower": require("emoji-white-flower"), // "💮"
|
|
382
|
-
"emoji-white-medium-square": require("emoji-white-medium-square"), // "◻️"
|
|
383
|
-
"emoji-white-square-button": require("emoji-white-square-button"), // "🔳"
|
|
384
|
-
"emoji-woman-woman-girl-boy": require("emoji-woman-woman-girl-boy"), // "👩👩👧👦"
|
|
385
|
-
"emoji-world-map": require("emoji-world-map"), // "🗺"
|
|
386
|
-
"emoji-zero": require("emoji-zero") // "0️⃣"
|
|
387
|
-
}
|
|
388
|
-
function stringIdentity(str) {
|
|
389
|
-
if (!isString(str) && ($String(str) === str)) {
|
|
390
|
-
return immediateError(
|
|
391
|
-
"The first argument to stringIdentity must be a string, and not an object string (e.g. new String(\"hi\")). Received: " + String(str),
|
|
392
|
-
ErrorType.TypeError
|
|
393
|
-
)
|
|
394
|
-
} else {
|
|
395
|
-
try {
|
|
396
|
-
return stringIdentityCommonStrings(str)
|
|
397
|
-
} catch {
|
|
398
|
-
return generalConcat(...(splitString(str, emptyString).map((currentValue) => {
|
|
399
|
-
try {
|
|
400
|
-
return stringIdentityCommonStrings(currentValue)
|
|
401
|
-
} catch {
|
|
402
|
-
return fromCharCode(currentValue.charCodeAt(0))
|
|
403
|
-
}
|
|
404
|
-
})))
|
|
405
|
-
}
|
|
406
|
-
}
|
|
407
|
-
}
|
|
408
|
-
|
|
409
|
-
function stringIdentityCommonStrings(str) {
|
|
410
|
-
if (eqstrings(str, emptyString)) return emptyString
|
|
411
|
-
if (eqstrings(str, space)) return space
|
|
412
|
-
if (eqstrings(str, lowercase_a)) return lowercase_a
|
|
413
|
-
if (eqstrings(str, lowercase_b)) return lowercase_b
|
|
414
|
-
if (eqstrings(str, lowercase_c)) return lowercase_c
|
|
415
|
-
if (eqstrings(str, lowercase_d)) return lowercase_d
|
|
416
|
-
if (eqstrings(str, lowercase_e)) return lowercase_e
|
|
417
|
-
if (eqstrings(str, lowercase_f)) return lowercase_f
|
|
418
|
-
if (eqstrings(str, lowercase_g)) return lowercase_g
|
|
419
|
-
if (eqstrings(str, lowercase_h)) return lowercase_h
|
|
420
|
-
if (eqstrings(str, lowercase_i)) return lowercase_i
|
|
421
|
-
if (eqstrings(str, lowercase_j)) return lowercase_j
|
|
422
|
-
if (eqstrings(str, lowercase_k)) return lowercase_k
|
|
423
|
-
if (eqstrings(str, lowercase_l)) return lowercase_l
|
|
424
|
-
if (eqstrings(str, lowercase_m)) return lowercase_m
|
|
425
|
-
if (eqstrings(str, lowercase_n)) return lowercase_n
|
|
426
|
-
if (eqstrings(str, lowercase_o)) return lowercase_o
|
|
427
|
-
if (eqstrings(str, lowercase_p)) return lowercase_p
|
|
428
|
-
if (eqstrings(str, lowercase_q)) return lowercase_q
|
|
429
|
-
if (eqstrings(str, lowercase_r)) return lowercase_r
|
|
430
|
-
if (eqstrings(str, lowercase_s)) return lowercase_s
|
|
431
|
-
if (eqstrings(str, lowercase_t)) return lowercase_t
|
|
432
|
-
if (eqstrings(str, lowercase_u)) return lowercase_u
|
|
433
|
-
if (eqstrings(str, lowercase_v)) return lowercase_v
|
|
434
|
-
if (eqstrings(str, lowercase_w)) return lowercase_w
|
|
435
|
-
if (eqstrings(str, lowercase_x)) return lowercase_x
|
|
436
|
-
if (eqstrings(str, lowercase_y)) return lowercase_y
|
|
437
|
-
if (eqstrings(str, lowercase_z)) return lowercase_z
|
|
438
|
-
if (eqstrings(str, uppercase_a)) return uppercase_a
|
|
439
|
-
if (eqstrings(str, uppercase_b)) return uppercase_b
|
|
440
|
-
if (eqstrings(str, uppercase_c)) return uppercase_c
|
|
441
|
-
if (eqstrings(str, uppercase_d)) return uppercase_d
|
|
442
|
-
if (eqstrings(str, uppercase_e)) return uppercase_e
|
|
443
|
-
if (eqstrings(str, uppercase_f)) return uppercase_f
|
|
444
|
-
if (eqstrings(str, uppercase_g)) return uppercase_g
|
|
445
|
-
if (eqstrings(str, uppercase_h)) return uppercase_h
|
|
446
|
-
if (eqstrings(str, uppercase_i)) return uppercase_i
|
|
447
|
-
if (eqstrings(str, uppercase_j)) return uppercase_j
|
|
448
|
-
if (eqstrings(str, uppercase_k)) return uppercase_k
|
|
449
|
-
if (eqstrings(str, uppercase_l)) return uppercase_l
|
|
450
|
-
if (eqstrings(str, uppercase_m)) return uppercase_m
|
|
451
|
-
if (eqstrings(str, uppercase_n)) return uppercase_n
|
|
452
|
-
if (eqstrings(str, uppercase_o)) return uppercase_o
|
|
453
|
-
if (eqstrings(str, uppercase_p)) return uppercase_p
|
|
454
|
-
if (eqstrings(str, uppercase_q)) return uppercase_q
|
|
455
|
-
if (eqstrings(str, uppercase_r)) return uppercase_r
|
|
456
|
-
if (eqstrings(str, uppercase_s)) return uppercase_s
|
|
457
|
-
if (eqstrings(str, uppercase_t)) return uppercase_t
|
|
458
|
-
if (eqstrings(str, uppercase_u)) return uppercase_u
|
|
459
|
-
if (eqstrings(str, uppercase_v)) return uppercase_v
|
|
460
|
-
if (eqstrings(str, uppercase_w)) return uppercase_w
|
|
461
|
-
if (eqstrings(str, uppercase_x)) return uppercase_x
|
|
462
|
-
if (eqstrings(str, uppercase_y)) return uppercase_y
|
|
463
|
-
if (eqstrings(str, uppercase_z)) return uppercase_z
|
|
464
|
-
if (eqstrings(str, lowercase_alphabet)) return lowercase_alphabet
|
|
465
|
-
if (eqstrings(str, uppercase_alphabet)) return uppercase_alphabet
|
|
466
|
-
if (eqstrings(str, fizz)) return fizz
|
|
467
|
-
if (eqstrings(str, buzz)) return buzz
|
|
468
|
-
if (eqstrings(str, fizzbuzz)) return fizzbuzz
|
|
469
|
-
if (eqstrings(str, creashaks)) return creashaks
|
|
470
|
-
if (eqstrings(str, organzine)) return organzine
|
|
471
|
-
if (eqstrings(str, creashaksOrganzine)) return creashaksOrganzine
|
|
472
|
-
if (eqstrings(str, emojis["emoji-100"])) return emojis["emoji-100"]
|
|
473
|
-
if (eqstrings(str, emojis["emoji-1234"])) return emojis["emoji-1234"]
|
|
474
|
-
if (eqstrings(str, emojis["emoji-abcd"])) return emojis["emoji-abcd"]
|
|
475
|
-
if (eqstrings(str, emojis["emoji-airplane-departure"])) return emojis["emoji-airplane-departure"]
|
|
476
|
-
if (eqstrings(str, emojis["emoji-alembic"])) return emojis["emoji-alembic"]
|
|
477
|
-
if (eqstrings(str, emojis["emoji-ant"])) return emojis["emoji-ant"]
|
|
478
|
-
if (eqstrings(str, emojis["emoji-apple"])) return emojis["emoji-apple"]
|
|
479
|
-
if (eqstrings(str, emojis["emoji-articulated-lorry"])) return emojis["emoji-articulated-lorry"]
|
|
480
|
-
if (eqstrings(str, emojis["emoji-bar-chart"])) return emojis["emoji-bar-chart"]
|
|
481
|
-
if (eqstrings(str, emojis["emoji-basketball"])) return emojis["emoji-basketball"]
|
|
482
|
-
if (eqstrings(str, emojis["emoji-bath"])) return emojis["emoji-bath"]
|
|
483
|
-
if (eqstrings(str, emojis["emoji-blue-book"])) return emojis["emoji-blue-book"]
|
|
484
|
-
if (eqstrings(str, emojis["emoji-bookmark-tabs"])) return emojis["emoji-bookmark-tabs"]
|
|
485
|
-
if (eqstrings(str, emojis["emoji-bread"])) return emojis["emoji-bread"]
|
|
486
|
-
if (eqstrings(str, emojis["emoji-bulb"])) return emojis["emoji-bulb"]
|
|
487
|
-
if (eqstrings(str, emojis["emoji-camping"])) return emojis["emoji-camping"]
|
|
488
|
-
if (eqstrings(str, emojis["emoji-candle"])) return emojis["emoji-candle"]
|
|
489
|
-
if (eqstrings(str, emojis["emoji-car"])) return emojis["emoji-car"]
|
|
490
|
-
if (eqstrings(str, emojis["emoji-card-index-dividers"])) return emojis["emoji-card-index-dividers"]
|
|
491
|
-
if (eqstrings(str, emojis["emoji-cat"])) return emojis["emoji-cat"]
|
|
492
|
-
if (eqstrings(str, emojis["emoji-cd"])) return emojis["emoji-cd"]
|
|
493
|
-
if (eqstrings(str, emojis["emoji-champagne"])) return emojis["emoji-champagne"]
|
|
494
|
-
if (eqstrings(str, emojis["emoji-checkered-flag"])) return emojis["emoji-checkered-flag"]
|
|
495
|
-
if (eqstrings(str, emojis["emoji-cherry-blossom"])) return emojis["emoji-cherry-blossom"]
|
|
496
|
-
if (eqstrings(str, emojis["emoji-city-sunrise"])) return emojis["emoji-city-sunrise"]
|
|
497
|
-
if (eqstrings(str, emojis["emoji-cityscape"])) return emojis["emoji-cityscape"]
|
|
498
|
-
if (eqstrings(str, emojis["emoji-clapper"])) return emojis["emoji-clapper"]
|
|
499
|
-
if (eqstrings(str, emojis["emoji-clock1"])) return emojis["emoji-clock1"]
|
|
500
|
-
if (eqstrings(str, emojis["emoji-clock10"])) return emojis["emoji-clock10"]
|
|
501
|
-
if (eqstrings(str, emojis["emoji-clock12"])) return emojis["emoji-clock12"]
|
|
502
|
-
if (eqstrings(str, emojis["emoji-clock3"])) return emojis["emoji-clock3"]
|
|
503
|
-
if (eqstrings(str, emojis["emoji-clock330"])) return emojis["emoji-clock330"]
|
|
504
|
-
if (eqstrings(str, emojis["emoji-clock530"])) return emojis["emoji-clock530"]
|
|
505
|
-
if (eqstrings(str, emojis["emoji-clock6"])) return emojis["emoji-clock6"]
|
|
506
|
-
if (eqstrings(str, emojis["emoji-clock630"])) return emojis["emoji-clock630"]
|
|
507
|
-
if (eqstrings(str, emojis["emoji-clock830"])) return emojis["emoji-clock830"]
|
|
508
|
-
if (eqstrings(str, emojis["emoji-clock9"])) return emojis["emoji-clock9"]
|
|
509
|
-
if (eqstrings(str, emojis["emoji-cocktail"])) return emojis["emoji-cocktail"]
|
|
510
|
-
if (eqstrings(str, emojis["emoji-coffee"])) return emojis["emoji-coffee"]
|
|
511
|
-
if (eqstrings(str, emojis["emoji-comet"])) return emojis["emoji-comet"]
|
|
512
|
-
if (eqstrings(str, emojis["emoji-compression"])) return emojis["emoji-compression"]
|
|
513
|
-
if (eqstrings(str, emojis["emoji-computer"])) return emojis["emoji-computer"]
|
|
514
|
-
if (eqstrings(str, emojis["emoji-construction"])) return emojis["emoji-construction"]
|
|
515
|
-
if (eqstrings(str, emojis["emoji-control-knobs"])) return emojis["emoji-control-knobs"]
|
|
516
|
-
if (eqstrings(str, emojis["emoji-cop"])) return emojis["emoji-cop"]
|
|
517
|
-
if (eqstrings(str, emojis["emoji-copyright"])) return emojis["emoji-copyright"]
|
|
518
|
-
if (eqstrings(str, emojis["emoji-crab"])) return emojis["emoji-crab"]
|
|
519
|
-
if (eqstrings(str, emojis["emoji-crescent-moon"])) return emojis["emoji-crescent-moon"]
|
|
520
|
-
if (eqstrings(str, emojis["emoji-crossed-flags"])) return emojis["emoji-crossed-flags"]
|
|
521
|
-
if (eqstrings(str, emojis["emoji-cry"])) return emojis["emoji-cry"]
|
|
522
|
-
if (eqstrings(str, emojis["emoji-crystal-ball"])) return emojis["emoji-crystal-ball"]
|
|
523
|
-
if (eqstrings(str, emojis["emoji-currency-exchange"])) return emojis["emoji-currency-exchange"]
|
|
524
|
-
if (eqstrings(str, emojis["emoji-dark-sunglasses"])) return emojis["emoji-dark-sunglasses"]
|
|
525
|
-
if (eqstrings(str, emojis["emoji-dart"])) return emojis["emoji-dart"]
|
|
526
|
-
if (eqstrings(str, emojis["emoji-de"])) return emojis["emoji-de"]
|
|
527
|
-
if (eqstrings(str, emojis["emoji-department-store"])) return emojis["emoji-department-store"]
|
|
528
|
-
if (eqstrings(str, emojis["emoji-door"])) return emojis["emoji-door"]
|
|
529
|
-
if (eqstrings(str, emojis["emoji-doughnut"])) return emojis["emoji-doughnut"]
|
|
530
|
-
if (eqstrings(str, emojis["emoji-egg"])) return emojis["emoji-egg"]
|
|
531
|
-
if (eqstrings(str, emojis["emoji-eight-pointed-black-star"])) return emojis["emoji-eight-pointed-black-star"]
|
|
532
|
-
if (eqstrings(str, emojis["emoji-eight-spoked-asterisk"])) return emojis["emoji-eight-spoked-asterisk"]
|
|
533
|
-
if (eqstrings(str, emojis["emoji-envelope-with-arrow"])) return emojis["emoji-envelope-with-arrow"]
|
|
534
|
-
if (eqstrings(str, emojis["emoji-es"])) return emojis["emoji-es"]
|
|
535
|
-
if (eqstrings(str, emojis["emoji-euro"])) return emojis["emoji-euro"]
|
|
536
|
-
if (eqstrings(str, emojis["emoji-eyeglasses"])) return emojis["emoji-eyeglasses"]
|
|
537
|
-
if (eqstrings(str, emojis["emoji-eyes"])) return emojis["emoji-eyes"]
|
|
538
|
-
if (eqstrings(str, emojis["emoji-family"])) return emojis["emoji-family"]
|
|
539
|
-
if (eqstrings(str, emojis["emoji-film-projector"])) return emojis["emoji-film-projector"]
|
|
540
|
-
if (eqstrings(str, emojis["emoji-fire"])) return emojis["emoji-fire"]
|
|
541
|
-
if (eqstrings(str, emojis["emoji-fire-engine"])) return emojis["emoji-fire-engine"]
|
|
542
|
-
if (eqstrings(str, emojis["emoji-fireworks"])) return emojis["emoji-fireworks"]
|
|
543
|
-
if (eqstrings(str, emojis["emoji-fish"])) return emojis["emoji-fish"]
|
|
544
|
-
if (eqstrings(str, emojis["emoji-flag-ag"])) return emojis["emoji-flag-ag"]
|
|
545
|
-
if (eqstrings(str, emojis["emoji-flag-am"])) return emojis["emoji-flag-am"]
|
|
546
|
-
if (eqstrings(str, emojis["emoji-flag-ax"])) return emojis["emoji-flag-ax"]
|
|
547
|
-
if (eqstrings(str, emojis["emoji-flag-bz"])) return emojis["emoji-flag-bz"]
|
|
548
|
-
if (eqstrings(str, emojis["emoji-flag-cm"])) return emojis["emoji-flag-cm"]
|
|
549
|
-
if (eqstrings(str, emojis["emoji-flag-cx"])) return emojis["emoji-flag-cx"]
|
|
550
|
-
if (eqstrings(str, emojis["emoji-flag-ee"])) return emojis["emoji-flag-ee"]
|
|
551
|
-
if (eqstrings(str, emojis["emoji-flag-es"])) return emojis["emoji-flag-es"]
|
|
552
|
-
if (eqstrings(str, emojis["emoji-flag-ga"])) return emojis["emoji-flag-ga"]
|
|
553
|
-
if (eqstrings(str, emojis["emoji-flag-gu"])) return emojis["emoji-flag-gu"]
|
|
554
|
-
if (eqstrings(str, emojis["emoji-flag-je"])) return emojis["emoji-flag-je"]
|
|
555
|
-
if (eqstrings(str, emojis["emoji-flag-kh"])) return emojis["emoji-flag-kh"]
|
|
556
|
-
if (eqstrings(str, emojis["emoji-flag-kn"])) return emojis["emoji-flag-kn"]
|
|
557
|
-
if (eqstrings(str, emojis["emoji-flag-na"])) return emojis["emoji-flag-na"]
|
|
558
|
-
if (eqstrings(str, emojis["emoji-flag-nu"])) return emojis["emoji-flag-nu"]
|
|
559
|
-
if (eqstrings(str, emojis["emoji-flag-pf"])) return emojis["emoji-flag-pf"]
|
|
560
|
-
if (eqstrings(str, emojis["emoji-flag-pr"])) return emojis["emoji-flag-pr"]
|
|
561
|
-
if (eqstrings(str, emojis["emoji-flag-pt"])) return emojis["emoji-flag-pt"]
|
|
562
|
-
if (eqstrings(str, emojis["emoji-flag-sh"])) return emojis["emoji-flag-sh"]
|
|
563
|
-
if (eqstrings(str, emojis["emoji-flag-so"])) return emojis["emoji-flag-so"]
|
|
564
|
-
if (eqstrings(str, emojis["emoji-flag-ss"])) return emojis["emoji-flag-ss"]
|
|
565
|
-
if (eqstrings(str, emojis["emoji-flag-vu"])) return emojis["emoji-flag-vu"]
|
|
566
|
-
if (eqstrings(str, emojis["emoji-flag-wf"])) return emojis["emoji-flag-wf"]
|
|
567
|
-
if (eqstrings(str, emojis["emoji-flag-ws"])) return emojis["emoji-flag-ws"]
|
|
568
|
-
if (eqstrings(str, emojis["emoji-fleur-de-lis"])) return emojis["emoji-fleur-de-lis"]
|
|
569
|
-
if (eqstrings(str, emojis["emoji-foggy"])) return emojis["emoji-foggy"]
|
|
570
|
-
if (eqstrings(str, emojis["emoji-footprints"])) return emojis["emoji-footprints"]
|
|
571
|
-
if (eqstrings(str, emojis["emoji-full-moon"])) return emojis["emoji-full-moon"]
|
|
572
|
-
if (eqstrings(str, emojis["emoji-funeral-urn"])) return emojis["emoji-funeral-urn"]
|
|
573
|
-
if (eqstrings(str, emojis["emoji-goat"])) return emojis["emoji-goat"]
|
|
574
|
-
if (eqstrings(str, emojis["emoji-golf"])) return emojis["emoji-golf"]
|
|
575
|
-
if (eqstrings(str, emojis["emoji-green-apple"])) return emojis["emoji-green-apple"]
|
|
576
|
-
if (eqstrings(str, emojis["emoji-gun"])) return emojis["emoji-gun"]
|
|
577
|
-
if (eqstrings(str, emojis["emoji-haircut"])) return emojis["emoji-haircut"]
|
|
578
|
-
if (eqstrings(str, emojis["emoji-hamster"])) return emojis["emoji-hamster"]
|
|
579
|
-
if (eqstrings(str, emojis["emoji-hash"])) return emojis["emoji-hash"]
|
|
580
|
-
if (eqstrings(str, emojis["emoji-headphones"])) return emojis["emoji-headphones"]
|
|
581
|
-
if (eqstrings(str, emojis["emoji-heartbeat"])) return emojis["emoji-heartbeat"]
|
|
582
|
-
if (eqstrings(str, emojis["emoji-hearts"])) return emojis["emoji-hearts"]
|
|
583
|
-
if (eqstrings(str, emojis["emoji-heavy-check-mark"])) return emojis["emoji-heavy-check-mark"]
|
|
584
|
-
if (eqstrings(str, emojis["emoji-helicopter"])) return emojis["emoji-helicopter"]
|
|
585
|
-
if (eqstrings(str, emojis["emoji-herb"])) return emojis["emoji-herb"]
|
|
586
|
-
if (eqstrings(str, emojis["emoji-hocho"])) return emojis["emoji-hocho"]
|
|
587
|
-
if (eqstrings(str, emojis["emoji-hotdog"])) return emojis["emoji-hotdog"]
|
|
588
|
-
if (eqstrings(str, emojis["emoji-hotel"])) return emojis["emoji-hotel"]
|
|
589
|
-
if (eqstrings(str, emojis["emoji-hotsprings"])) return emojis["emoji-hotsprings"]
|
|
590
|
-
if (eqstrings(str, emojis["emoji-house"])) return emojis["emoji-house"]
|
|
591
|
-
if (eqstrings(str, emojis["emoji-inbox-tray"])) return emojis["emoji-inbox-tray"]
|
|
592
|
-
if (eqstrings(str, emojis["emoji-information-source"])) return emojis["emoji-information-source"]
|
|
593
|
-
if (eqstrings(str, emojis["emoji-innocent"])) return emojis["emoji-innocent"]
|
|
594
|
-
if (eqstrings(str, emojis["emoji-izakaya-lantern"])) return emojis["emoji-izakaya-lantern"]
|
|
595
|
-
if (eqstrings(str, emojis["emoji-japan"])) return emojis["emoji-japan"]
|
|
596
|
-
if (eqstrings(str, emojis["emoji-japanese-castle"])) return emojis["emoji-japanese-castle"]
|
|
597
|
-
if (eqstrings(str, emojis["emoji-joy"])) return emojis["emoji-joy"]
|
|
598
|
-
if (eqstrings(str, emojis["emoji-keyboard"])) return emojis["emoji-keyboard"]
|
|
599
|
-
if (eqstrings(str, emojis["emoji-keycap-star"])) return emojis["emoji-keycap-star"]
|
|
600
|
-
if (eqstrings(str, emojis["emoji-kissing"])) return emojis["emoji-kissing"]
|
|
601
|
-
if (eqstrings(str, emojis["emoji-kissing-heart"])) return emojis["emoji-kissing-heart"]
|
|
602
|
-
if (eqstrings(str, emojis["emoji-knife-fork-plate"])) return emojis["emoji-knife-fork-plate"]
|
|
603
|
-
if (eqstrings(str, emojis["emoji-koko"])) return emojis["emoji-koko"]
|
|
604
|
-
if (eqstrings(str, emojis["emoji-lantern"])) return emojis["emoji-lantern"]
|
|
605
|
-
if (eqstrings(str, emojis["emoji-laughing"])) return emojis["emoji-laughing"]
|
|
606
|
-
if (eqstrings(str, emojis["emoji-leaves"])) return emojis["emoji-leaves"]
|
|
607
|
-
if (eqstrings(str, emojis["emoji-left-luggage"])) return emojis["emoji-left-luggage"]
|
|
608
|
-
if (eqstrings(str, emojis["emoji-libra"])) return emojis["emoji-libra"]
|
|
609
|
-
if (eqstrings(str, emojis["emoji-lightning"])) return emojis["emoji-lightning"]
|
|
610
|
-
if (eqstrings(str, emojis["emoji-lollipop"])) return emojis["emoji-lollipop"]
|
|
611
|
-
if (eqstrings(str, emojis["emoji-love-letter"])) return emojis["emoji-love-letter"]
|
|
612
|
-
if (eqstrings(str, emojis["emoji-lower-left-ballpoint-pen"])) return emojis["emoji-lower-left-ballpoint-pen"]
|
|
613
|
-
if (eqstrings(str, emojis["emoji-mag"])) return emojis["emoji-mag"]
|
|
614
|
-
if (eqstrings(str, emojis["emoji-mahjong"])) return emojis["emoji-mahjong"]
|
|
615
|
-
if (eqstrings(str, emojis["emoji-man-and-woman-holding-hands"])) return emojis["emoji-man-and-woman-holding-hands"]
|
|
616
|
-
if (eqstrings(str, emojis["emoji-man-kiss-man"])) return emojis["emoji-man-kiss-man"]
|
|
617
|
-
if (eqstrings(str, emojis["emoji-man-man-boy-boy"])) return emojis["emoji-man-man-boy-boy"]
|
|
618
|
-
if (eqstrings(str, emojis["emoji-man-with-turban"])) return emojis["emoji-man-with-turban"]
|
|
619
|
-
if (eqstrings(str, emojis["emoji-man-woman-boy"])) return emojis["emoji-man-woman-boy"]
|
|
620
|
-
if (eqstrings(str, emojis["emoji-man-woman-girl"])) return emojis["emoji-man-woman-girl"]
|
|
621
|
-
if (eqstrings(str, emojis["emoji-man-woman-girl-boy"])) return emojis["emoji-man-woman-girl-boy"]
|
|
622
|
-
if (eqstrings(str, emojis["emoji-mantelpiece-clock"])) return emojis["emoji-mantelpiece-clock"]
|
|
623
|
-
if (eqstrings(str, emojis["emoji-microphone"])) return emojis["emoji-microphone"]
|
|
624
|
-
if (eqstrings(str, emojis["emoji-middle-finger"])) return emojis["emoji-middle-finger"]
|
|
625
|
-
if (eqstrings(str, emojis["emoji-milky-way"])) return emojis["emoji-milky-way"]
|
|
626
|
-
if (eqstrings(str, emojis["emoji-money-mouth-face"])) return emojis["emoji-money-mouth-face"]
|
|
627
|
-
if (eqstrings(str, emojis["emoji-monkey-face"])) return emojis["emoji-monkey-face"]
|
|
628
|
-
if (eqstrings(str, emojis["emoji-mostly-sunny"])) return emojis["emoji-mostly-sunny"]
|
|
629
|
-
if (eqstrings(str, emojis["emoji-mount-fuji"])) return emojis["emoji-mount-fuji"]
|
|
630
|
-
if (eqstrings(str, emojis["emoji-mountain"])) return emojis["emoji-mountain"]
|
|
631
|
-
if (eqstrings(str, emojis["emoji-mouse2"])) return emojis["emoji-mouse2"]
|
|
632
|
-
if (eqstrings(str, emojis["emoji-mushroom"])) return emojis["emoji-mushroom"]
|
|
633
|
-
if (eqstrings(str, emojis["emoji-name-badge"])) return emojis["emoji-name-badge"]
|
|
634
|
-
if (eqstrings(str, emojis["emoji-non-potable-water"])) return emojis["emoji-non-potable-water"]
|
|
635
|
-
if (eqstrings(str, emojis["emoji-nose"])) return emojis["emoji-nose"]
|
|
636
|
-
if (eqstrings(str, emojis["emoji-o2"])) return emojis["emoji-o2"]
|
|
637
|
-
if (eqstrings(str, emojis["emoji-om-symbol"])) return emojis["emoji-om-symbol"]
|
|
638
|
-
if (eqstrings(str, emojis["emoji-on"])) return emojis["emoji-on"]
|
|
639
|
-
if (eqstrings(str, emojis["emoji-oncoming-taxi"])) return emojis["emoji-oncoming-taxi"]
|
|
640
|
-
if (eqstrings(str, emojis["emoji-one"])) return emojis["emoji-one"]
|
|
641
|
-
if (eqstrings(str, emojis["emoji-outbox-tray"])) return emojis["emoji-outbox-tray"]
|
|
642
|
-
if (eqstrings(str, emojis["emoji-package"])) return emojis["emoji-package"]
|
|
643
|
-
if (eqstrings(str, emojis["emoji-palm-tree"])) return emojis["emoji-palm-tree"]
|
|
644
|
-
if (eqstrings(str, emojis["emoji-paperclip"])) return emojis["emoji-paperclip"]
|
|
645
|
-
if (eqstrings(str, emojis["emoji-parking"])) return emojis["emoji-parking"]
|
|
646
|
-
if (eqstrings(str, emojis["emoji-part-alternation-mark"])) return emojis["emoji-part-alternation-mark"]
|
|
647
|
-
if (eqstrings(str, emojis["emoji-passport-control"])) return emojis["emoji-passport-control"]
|
|
648
|
-
if (eqstrings(str, emojis["emoji-phone"])) return emojis["emoji-phone"]
|
|
649
|
-
if (eqstrings(str, emojis["emoji-pig"])) return emojis["emoji-pig"]
|
|
650
|
-
if (eqstrings(str, emojis["emoji-pig-nose"])) return emojis["emoji-pig-nose"]
|
|
651
|
-
if (eqstrings(str, emojis["emoji-pig2"])) return emojis["emoji-pig2"]
|
|
652
|
-
if (eqstrings(str, emojis["emoji-pill"])) return emojis["emoji-pill"]
|
|
653
|
-
if (eqstrings(str, emojis["emoji-police-car"])) return emojis["emoji-police-car"]
|
|
654
|
-
if (eqstrings(str, emojis["emoji-poodle"])) return emojis["emoji-poodle"]
|
|
655
|
-
if (eqstrings(str, emojis["emoji-poop"])) return emojis["emoji-poop"]
|
|
656
|
-
if (eqstrings(str, emojis["emoji-postal-horn"])) return emojis["emoji-postal-horn"]
|
|
657
|
-
if (eqstrings(str, emojis["emoji-postbox"])) return emojis["emoji-postbox"]
|
|
658
|
-
if (eqstrings(str, emojis["emoji-purse"])) return emojis["emoji-purse"]
|
|
659
|
-
if (eqstrings(str, emojis["emoji-rainbow"])) return emojis["emoji-rainbow"]
|
|
660
|
-
if (eqstrings(str, emojis["emoji-raised-hand"])) return emojis["emoji-raised-hand"]
|
|
661
|
-
if (eqstrings(str, emojis["emoji-repeat"])) return emojis["emoji-repeat"]
|
|
662
|
-
if (eqstrings(str, emojis["emoji-repeat-one"])) return emojis["emoji-repeat-one"]
|
|
663
|
-
if (eqstrings(str, emojis["emoji-rice"])) return emojis["emoji-rice"]
|
|
664
|
-
if (eqstrings(str, emojis["emoji-ring"])) return emojis["emoji-ring"]
|
|
665
|
-
if (eqstrings(str, emojis["emoji-rooster"])) return emojis["emoji-rooster"]
|
|
666
|
-
if (eqstrings(str, emojis["emoji-rose"])) return emojis["emoji-rose"]
|
|
667
|
-
if (eqstrings(str, emojis["emoji-rotating-light"])) return emojis["emoji-rotating-light"]
|
|
668
|
-
if (eqstrings(str, emojis["emoji-running"])) return emojis["emoji-running"]
|
|
669
|
-
if (eqstrings(str, emojis["emoji-satellite"])) return emojis["emoji-satellite"]
|
|
670
|
-
if (eqstrings(str, emojis["emoji-saxophone"])) return emojis["emoji-saxophone"]
|
|
671
|
-
if (eqstrings(str, emojis["emoji-scorpion"])) return emojis["emoji-scorpion"]
|
|
672
|
-
if (eqstrings(str, emojis["emoji-scream"])) return emojis["emoji-scream"]
|
|
673
|
-
if (eqstrings(str, emojis["emoji-secret"])) return emojis["emoji-secret"]
|
|
674
|
-
if (eqstrings(str, emojis["emoji-shower"])) return emojis["emoji-shower"]
|
|
675
|
-
if (eqstrings(str, emojis["emoji-signal-strength"])) return emojis["emoji-signal-strength"]
|
|
676
|
-
if (eqstrings(str, emojis["emoji-six"])) return emojis["emoji-six"]
|
|
677
|
-
if (eqstrings(str, emojis["emoji-ski"])) return emojis["emoji-ski"]
|
|
678
|
-
if (eqstrings(str, emojis["emoji-small-red-triangle"])) return emojis["emoji-small-red-triangle"]
|
|
679
|
-
if (eqstrings(str, emojis["emoji-smile"])) return emojis["emoji-smile"]
|
|
680
|
-
if (eqstrings(str, emojis["emoji-smile-cat"])) return emojis["emoji-smile-cat"]
|
|
681
|
-
if (eqstrings(str, emojis["emoji-smirk-cat"])) return emojis["emoji-smirk-cat"]
|
|
682
|
-
if (eqstrings(str, emojis["emoji-space-invader"])) return emojis["emoji-space-invader"]
|
|
683
|
-
if (eqstrings(str, emojis["emoji-sparkle"])) return emojis["emoji-sparkle"]
|
|
684
|
-
if (eqstrings(str, emojis["emoji-sparkler"])) return emojis["emoji-sparkler"]
|
|
685
|
-
if (eqstrings(str, emojis["emoji-star-and-crescent"])) return emojis["emoji-star-and-crescent"]
|
|
686
|
-
if (eqstrings(str, emojis["emoji-star-of-david"])) return emojis["emoji-star-of-david"]
|
|
687
|
-
if (eqstrings(str, emojis["emoji-steam-locomotive"])) return emojis["emoji-steam-locomotive"]
|
|
688
|
-
if (eqstrings(str, emojis["emoji-strawberry"])) return emojis["emoji-strawberry"]
|
|
689
|
-
if (eqstrings(str, emojis["emoji-sunflower"])) return emojis["emoji-sunflower"]
|
|
690
|
-
if (eqstrings(str, emojis["emoji-sunglasses"])) return emojis["emoji-sunglasses"]
|
|
691
|
-
if (eqstrings(str, emojis["emoji-sushi"])) return emojis["emoji-sushi"]
|
|
692
|
-
if (eqstrings(str, emojis["emoji-sweat"])) return emojis["emoji-sweat"]
|
|
693
|
-
if (eqstrings(str, emojis["emoji-sweat-smile"])) return emojis["emoji-sweat-smile"]
|
|
694
|
-
if (eqstrings(str, emojis["emoji-synagogue"])) return emojis["emoji-synagogue"]
|
|
695
|
-
if (eqstrings(str, emojis["emoji-taxi"])) return emojis["emoji-taxi"]
|
|
696
|
-
if (eqstrings(str, emojis["emoji-tea"])) return emojis["emoji-tea"]
|
|
697
|
-
if (eqstrings(str, emojis["emoji-thinking-face"])) return emojis["emoji-thinking-face"]
|
|
698
|
-
if (eqstrings(str, emojis["emoji-three-button-mouse"])) return emojis["emoji-three-button-mouse"]
|
|
699
|
-
if (eqstrings(str, emojis["emoji-tm"])) return emojis["emoji-tm"]
|
|
700
|
-
if (eqstrings(str, emojis["emoji-top"])) return emojis["emoji-top"]
|
|
701
|
-
if (eqstrings(str, emojis["emoji-trackball"])) return emojis["emoji-trackball"]
|
|
702
|
-
if (eqstrings(str, emojis["emoji-trolleybus"])) return emojis["emoji-trolleybus"]
|
|
703
|
-
if (eqstrings(str, emojis["emoji-tulip"])) return emojis["emoji-tulip"]
|
|
704
|
-
if (eqstrings(str, emojis["emoji-two"])) return emojis["emoji-two"]
|
|
705
|
-
if (eqstrings(str, emojis["emoji-two-men-holding-hands"])) return emojis["emoji-two-men-holding-hands"]
|
|
706
|
-
if (eqstrings(str, emojis["emoji-u6709"])) return emojis["emoji-u6709"]
|
|
707
|
-
if (eqstrings(str, emojis["emoji-u7533"])) return emojis["emoji-u7533"]
|
|
708
|
-
if (eqstrings(str, emojis["emoji-umbrella-on-ground"])) return emojis["emoji-umbrella-on-ground"]
|
|
709
|
-
if (eqstrings(str, emojis["emoji-us"])) return emojis["emoji-us"]
|
|
710
|
-
if (eqstrings(str, emojis["emoji-vhs"])) return emojis["emoji-vhs"]
|
|
711
|
-
if (eqstrings(str, emojis["emoji-volcano"])) return emojis["emoji-volcano"]
|
|
712
|
-
if (eqstrings(str, emojis["emoji-wedding"])) return emojis["emoji-wedding"]
|
|
713
|
-
if (eqstrings(str, emojis["emoji-weight-lifter"])) return emojis["emoji-weight-lifter"]
|
|
714
|
-
if (eqstrings(str, emojis["emoji-whale"])) return emojis["emoji-whale"]
|
|
715
|
-
if (eqstrings(str, emojis["emoji-white-flower"])) return emojis["emoji-white-flower"]
|
|
716
|
-
if (eqstrings(str, emojis["emoji-white-medium-square"])) return emojis["emoji-white-medium-square"]
|
|
717
|
-
if (eqstrings(str, emojis["emoji-white-square-button"])) return emojis["emoji-white-square-button"]
|
|
718
|
-
if (eqstrings(str, emojis["emoji-woman-woman-girl-boy"])) return emojis["emoji-woman-woman-girl-boy"]
|
|
719
|
-
if (eqstrings(str, emojis["emoji-world-map"])) return emojis["emoji-world-map"]
|
|
720
|
-
if (eqstrings(str, emojis["emoji-zero"])) return emojis["emoji-zero"]
|
|
721
|
-
if (isWDS(str)) return generalConcat(uppercase_w, uppercase_d, uppercase_s)
|
|
722
|
-
immediateError("if you see this error in the console everything's broken and the world is ending. take shelter", ErrorType.BaseError)
|
|
723
|
-
}
|
|
724
|
-
|
|
1
|
+
// UTILS
|
|
2
|
+
var generalConcat = require("general-concat")
|
|
3
|
+
var splitString = require("string.prototype.split")
|
|
4
|
+
var eqstrings = require("eq-strings")
|
|
5
|
+
var isWDS = require("@overkill/is-wds").isWDS
|
|
6
|
+
var { immediateError, ErrorType } = require("immediate-error")
|
|
7
|
+
var getIntrinsic = require("get-intrinsic")
|
|
8
|
+
var $String = getIntrinsic("%String%")
|
|
9
|
+
var fromCharCode = getIntrinsic("%String.fromCharCode%")
|
|
10
|
+
var isString = require("is-string")
|
|
11
|
+
|
|
12
|
+
// LOWERCASE LETTERS
|
|
13
|
+
var lowercase_a = require("@lowercase-letters/a") // "a"
|
|
14
|
+
var lowercase_b = require("@lowercase-letters/b") // "b"
|
|
15
|
+
var lowercase_c = require("@lowercase-letters/c") // "c"
|
|
16
|
+
var lowercase_d = require("@lowercase-letters/d") // "d"
|
|
17
|
+
var lowercase_e = require("@lowercase-letters/e") // "e"
|
|
18
|
+
var lowercase_f = require("@lowercase-letters/f") // "f"
|
|
19
|
+
var lowercase_g = require("@lowercase-letters/g") // "g"
|
|
20
|
+
var lowercase_h = require("@lowercase-letters/h") // "h"
|
|
21
|
+
var lowercase_i = require("@lowercase-letters/i") // "i"
|
|
22
|
+
var lowercase_j = require("@lowercase-letters/j") // "j"
|
|
23
|
+
var lowercase_k = require("@lowercase-letters/k") // "k"
|
|
24
|
+
var lowercase_l = require("@lowercase-letters/l") // "l"
|
|
25
|
+
var lowercase_m = require("@lowercase-letters/m") // "m"
|
|
26
|
+
var lowercase_n = require("@lowercase-letters/n") // "n"
|
|
27
|
+
var lowercase_o = require("@lowercase-letters/o") // "o"
|
|
28
|
+
var lowercase_p = require("@lowercase-letters/p") // "p"
|
|
29
|
+
var lowercase_q = require("@lowercase-letters/q") // "q"
|
|
30
|
+
var lowercase_r = require("@lowercase-letters/r") // "r"
|
|
31
|
+
var lowercase_s = require("@lowercase-letters/s") // "s"
|
|
32
|
+
var lowercase_t = require("@lowercase-letters/t") // "t"
|
|
33
|
+
var lowercase_u = require("@lowercase-letters/u") // "u"
|
|
34
|
+
var lowercase_v = require("@lowercase-letters/v") // "v"
|
|
35
|
+
var lowercase_w = require("@lowercase-letters/w") // "w"
|
|
36
|
+
var lowercase_x = require("@lowercase-letters/x") // "x"
|
|
37
|
+
var lowercase_y = require("@lowercase-letters/y") // "y"
|
|
38
|
+
var lowercase_z = require("@lowercase-letters/z") // "z"
|
|
39
|
+
|
|
40
|
+
// UPPERCASE LETTERS
|
|
41
|
+
var uppercase_a = require("@uppercase-letters/a") // "A"
|
|
42
|
+
var uppercase_b = require("@uppercase-letters/b") // "B"
|
|
43
|
+
var uppercase_c = require("@uppercase-letters/c") // "C"
|
|
44
|
+
var uppercase_d = require("@uppercase-letters/d") // "D"
|
|
45
|
+
var uppercase_e = require("@uppercase-letters/e") // "E"
|
|
46
|
+
var uppercase_f = require("@uppercase-letters/f") // "F"
|
|
47
|
+
var uppercase_g = require("@uppercase-letters/g") // "G"
|
|
48
|
+
var uppercase_h = require("@uppercase-letters/h") // "H"
|
|
49
|
+
var uppercase_i = require("@uppercase-letters/i") // "I"
|
|
50
|
+
var uppercase_j = require("@uppercase-letters/j") // "J"
|
|
51
|
+
var uppercase_k = require("@uppercase-letters/k") // "K"
|
|
52
|
+
var uppercase_l = require("@uppercase-letters/l") // "L"
|
|
53
|
+
var uppercase_m = require("@uppercase-letters/m") // "M"
|
|
54
|
+
var uppercase_n = require("@uppercase-letters/n") // "N"
|
|
55
|
+
var uppercase_o = require("@uppercase-letters/o") // "O"
|
|
56
|
+
var uppercase_p = require("@uppercase-letters/p") // "P"
|
|
57
|
+
var uppercase_q = require("@uppercase-letters/q") // "Q"
|
|
58
|
+
var uppercase_r = require("@uppercase-letters/r") // "R"
|
|
59
|
+
var uppercase_s = require("@uppercase-letters/s") // "S"
|
|
60
|
+
var uppercase_t = require("@uppercase-letters/t") // "T"
|
|
61
|
+
var uppercase_u = require("@uppercase-letters/u") // "U"
|
|
62
|
+
var uppercase_v = require("@uppercase-letters/v") // "V"
|
|
63
|
+
var uppercase_w = require("@uppercase-letters/w") // "W"
|
|
64
|
+
var uppercase_x = require("@uppercase-letters/x") // "X"
|
|
65
|
+
var uppercase_y = require("@uppercase-letters/y") // "Y"
|
|
66
|
+
var uppercase_z = require("@uppercase-letters/z") // "Z"
|
|
67
|
+
|
|
68
|
+
// ALPHABET
|
|
69
|
+
var lowercase_alphabet = generalConcat(
|
|
70
|
+
lowercase_a,
|
|
71
|
+
lowercase_b,
|
|
72
|
+
lowercase_c,
|
|
73
|
+
lowercase_d,
|
|
74
|
+
lowercase_e,
|
|
75
|
+
lowercase_f,
|
|
76
|
+
lowercase_g,
|
|
77
|
+
lowercase_h,
|
|
78
|
+
lowercase_i,
|
|
79
|
+
lowercase_j,
|
|
80
|
+
lowercase_k,
|
|
81
|
+
lowercase_l,
|
|
82
|
+
lowercase_m,
|
|
83
|
+
lowercase_n,
|
|
84
|
+
lowercase_o,
|
|
85
|
+
lowercase_p,
|
|
86
|
+
lowercase_q,
|
|
87
|
+
lowercase_r,
|
|
88
|
+
lowercase_s,
|
|
89
|
+
lowercase_t,
|
|
90
|
+
lowercase_u,
|
|
91
|
+
lowercase_v,
|
|
92
|
+
lowercase_w,
|
|
93
|
+
lowercase_x,
|
|
94
|
+
lowercase_y,
|
|
95
|
+
lowercase_z
|
|
96
|
+
)
|
|
97
|
+
var uppercase_alphabet = generalConcat(
|
|
98
|
+
uppercase_a,
|
|
99
|
+
uppercase_b,
|
|
100
|
+
uppercase_c,
|
|
101
|
+
uppercase_d,
|
|
102
|
+
uppercase_e,
|
|
103
|
+
uppercase_f,
|
|
104
|
+
uppercase_g,
|
|
105
|
+
uppercase_h,
|
|
106
|
+
uppercase_i,
|
|
107
|
+
uppercase_j,
|
|
108
|
+
uppercase_k,
|
|
109
|
+
uppercase_l,
|
|
110
|
+
uppercase_m,
|
|
111
|
+
uppercase_n,
|
|
112
|
+
uppercase_o,
|
|
113
|
+
uppercase_p,
|
|
114
|
+
uppercase_q,
|
|
115
|
+
uppercase_r,
|
|
116
|
+
uppercase_s,
|
|
117
|
+
uppercase_t,
|
|
118
|
+
uppercase_u,
|
|
119
|
+
uppercase_v,
|
|
120
|
+
uppercase_w,
|
|
121
|
+
uppercase_x,
|
|
122
|
+
uppercase_y,
|
|
123
|
+
uppercase_z
|
|
124
|
+
)
|
|
125
|
+
|
|
126
|
+
// OTHER RANDOM STRINGS
|
|
127
|
+
var fizz = require("string-fizz") // "fizz"
|
|
128
|
+
var buzz = require("string-buzz") // "buzz"
|
|
129
|
+
var fizzbuzz = require("string-fizzbuzz") // "fizzbuzz"
|
|
130
|
+
var creashaks = require("string-creashaks") // "creashaks"
|
|
131
|
+
var organzine = require("string-organzine") // "organzine"
|
|
132
|
+
var creashaksOrganzine = require("string-creashaks-organzine") // "creashaks organzine"
|
|
133
|
+
var emptyString = require("empty-string") // ""
|
|
134
|
+
var space = require("space-string") // " "
|
|
135
|
+
|
|
136
|
+
// EMOJIS
|
|
137
|
+
var emojis = {
|
|
138
|
+
"emoji-100": require("emoji-100"), // "💯"
|
|
139
|
+
"emoji-1234": require("emoji-1234"), // "🔢"
|
|
140
|
+
"emoji-abcd": require("emoji-abcd"), // "🔡"
|
|
141
|
+
"emoji-airplane-departure": require("emoji-airplane-departure"), // "🛫"
|
|
142
|
+
"emoji-alembic": require("emoji-alembic"), // "⚗"
|
|
143
|
+
"emoji-ant": require("emoji-ant"), // "🐜"
|
|
144
|
+
"emoji-apple": require("emoji-apple"), // "🍎"
|
|
145
|
+
"emoji-articulated-lorry": require("emoji-articulated-lorry"), // "🚛"
|
|
146
|
+
"emoji-bar-chart": require("emoji-bar-chart"), // "📊"
|
|
147
|
+
"emoji-basketball": require("emoji-basketball"), // "🏀"
|
|
148
|
+
"emoji-bath": require("emoji-bath"), // "🛀"
|
|
149
|
+
"emoji-blue-book": require("emoji-blue-book"), // "📘"
|
|
150
|
+
"emoji-bookmark-tabs": require("emoji-bookmark-tabs"), // "📑"
|
|
151
|
+
"emoji-bread": require("emoji-bread"), // "🍞"
|
|
152
|
+
"emoji-bulb": require("emoji-bulb"), // "💡"
|
|
153
|
+
"emoji-camping": require("emoji-camping"), // "🏕"
|
|
154
|
+
"emoji-candle": require("emoji-candle"), // "🕯"
|
|
155
|
+
"emoji-car": require("emoji-car"), // "🚗"
|
|
156
|
+
"emoji-card-index-dividers": require("emoji-card-index-dividers"), // "🗂"
|
|
157
|
+
"emoji-cat": require("emoji-cat"), // "🐱"
|
|
158
|
+
"emoji-cd": require("emoji-cd"), // "💿"
|
|
159
|
+
"emoji-champagne": require("emoji-champagne"), // "🍾"
|
|
160
|
+
"emoji-checkered-flag": require("emoji-checkered-flag"), // "🏁"
|
|
161
|
+
"emoji-cherry-blossom": require("emoji-cherry-blossom"), // "🌸"
|
|
162
|
+
"emoji-city-sunrise": require("emoji-city-sunrise"), // "🌇"
|
|
163
|
+
"emoji-cityscape": require("emoji-cityscape"), // "🏙"
|
|
164
|
+
"emoji-clapper": require("emoji-clapper"), // "🎬"
|
|
165
|
+
"emoji-clock1": require("emoji-clock1"), // "🕐"
|
|
166
|
+
"emoji-clock10": require("emoji-clock10"), // "🕙"
|
|
167
|
+
"emoji-clock12": require("emoji-clock12"), // "🕛"
|
|
168
|
+
"emoji-clock3": require("emoji-clock3"), // "🕒"
|
|
169
|
+
"emoji-clock330": require("emoji-clock330"), // "🕞"
|
|
170
|
+
"emoji-clock530": require("emoji-clock530"), // "🕠"
|
|
171
|
+
"emoji-clock6": require("emoji-clock6"), // "🕕"
|
|
172
|
+
"emoji-clock630": require("emoji-clock630"), // "🕡"
|
|
173
|
+
"emoji-clock830": require("emoji-clock830"), // "🕣"
|
|
174
|
+
"emoji-clock9": require("emoji-clock9"), // "🕘"
|
|
175
|
+
"emoji-cocktail": require("emoji-cocktail"), // "🍸"
|
|
176
|
+
"emoji-coffee": require("emoji-coffee"), // "☕️"
|
|
177
|
+
"emoji-comet": require("emoji-comet"), // "☄"
|
|
178
|
+
"emoji-compression": require("emoji-compression"), // "🗜"
|
|
179
|
+
"emoji-computer": require("emoji-computer"), // "💻"
|
|
180
|
+
"emoji-construction": require("emoji-construction"), // "🚧"
|
|
181
|
+
"emoji-control-knobs": require("emoji-control-knobs"), // "🎛"
|
|
182
|
+
"emoji-cop": require("emoji-cop"), // "👮"
|
|
183
|
+
"emoji-copyright": require("emoji-copyright"), // "©️"
|
|
184
|
+
"emoji-crab": require("emoji-crab"), // "🦀"
|
|
185
|
+
"emoji-crescent-moon": require("emoji-crescent-moon"), // "🌙"
|
|
186
|
+
"emoji-crossed-flags": require("emoji-crossed-flags"), // "🎌"
|
|
187
|
+
"emoji-cry": require("emoji-cry"), // "😢"
|
|
188
|
+
"emoji-crystal-ball": require("emoji-crystal-ball"), // "🔮"
|
|
189
|
+
"emoji-currency-exchange": require("emoji-currency-exchange"), // "💱"
|
|
190
|
+
"emoji-dark-sunglasses": require("emoji-dark-sunglasses"), // "🕶"
|
|
191
|
+
"emoji-dart": require("emoji-dart"), // "🎯"
|
|
192
|
+
"emoji-de": require("emoji-de"), // "🇩🇪"
|
|
193
|
+
"emoji-department-store": require("emoji-department-store"), // "🏬"
|
|
194
|
+
"emoji-door": require("emoji-door"), // "🚪"
|
|
195
|
+
"emoji-doughnut": require("emoji-doughnut"), // "🍩"
|
|
196
|
+
"emoji-egg": require("emoji-egg"), // "🍳"
|
|
197
|
+
"emoji-eight-pointed-black-star": require("emoji-eight-pointed-black-star"), // "✴️"
|
|
198
|
+
"emoji-eight-spoked-asterisk": require("emoji-eight-spoked-asterisk"), // "✳️"
|
|
199
|
+
"emoji-envelope-with-arrow": require("emoji-envelope-with-arrow"), // "📩"
|
|
200
|
+
"emoji-es": require("emoji-es"), // "🇪🇸"
|
|
201
|
+
"emoji-euro": require("emoji-euro"), // "💶"
|
|
202
|
+
"emoji-eyeglasses": require("emoji-eyeglasses"), // "👓"
|
|
203
|
+
"emoji-eyes": require("emoji-eyes"), // "👀"
|
|
204
|
+
"emoji-family": require("emoji-family"), // "👨👩👦"
|
|
205
|
+
"emoji-film-projector": require("emoji-film-projector"), // "📽"
|
|
206
|
+
"emoji-fire": require("emoji-fire"), // "🔥"
|
|
207
|
+
"emoji-fire-engine": require("emoji-fire-engine"), // "🚒"
|
|
208
|
+
"emoji-fireworks": require("emoji-fireworks"), // "🎆"
|
|
209
|
+
"emoji-fish": require("emoji-fish"), // "🐟"
|
|
210
|
+
"emoji-flag-ag": require("emoji-flag-ag"), // "🇦🇬"
|
|
211
|
+
"emoji-flag-am": require("emoji-flag-am"), // "🇦🇲"
|
|
212
|
+
"emoji-flag-ax": require("emoji-flag-ax"), // "🇦🇽"
|
|
213
|
+
"emoji-flag-bz": require("emoji-flag-bz"), // "🇧🇿"
|
|
214
|
+
"emoji-flag-cm": require("emoji-flag-cm"), // "🇨🇲"
|
|
215
|
+
"emoji-flag-cx": require("emoji-flag-cx"), // "🇨🇽"
|
|
216
|
+
"emoji-flag-ee": require("emoji-flag-ee"), // "🇪🇪"
|
|
217
|
+
"emoji-flag-es": require("emoji-flag-es"), // "🇪🇸"
|
|
218
|
+
"emoji-flag-ga": require("emoji-flag-ga"), // "🇬🇦"
|
|
219
|
+
"emoji-flag-gu": require("emoji-flag-gu"), // "🇬🇺"
|
|
220
|
+
"emoji-flag-je": require("emoji-flag-je"), // "🇯🇪"
|
|
221
|
+
"emoji-flag-kh": require("emoji-flag-kh"), // "🇰🇭"
|
|
222
|
+
"emoji-flag-kn": require("emoji-flag-kn"), // "🇰🇳"
|
|
223
|
+
"emoji-flag-na": require("emoji-flag-na"), // "🇳🇦"
|
|
224
|
+
"emoji-flag-nu": require("emoji-flag-nu"), // "🇳🇺"
|
|
225
|
+
"emoji-flag-pf": require("emoji-flag-pf"), // "🇵🇫"
|
|
226
|
+
"emoji-flag-pr": require("emoji-flag-pr"), // "🇵🇷"
|
|
227
|
+
"emoji-flag-pt": require("emoji-flag-pt"), // "🇵🇹"
|
|
228
|
+
"emoji-flag-sh": require("emoji-flag-sh"), // "🇸🇭"
|
|
229
|
+
"emoji-flag-so": require("emoji-flag-so"), // "🇸🇴"
|
|
230
|
+
"emoji-flag-ss": require("emoji-flag-ss"), // "🇸🇸"
|
|
231
|
+
"emoji-flag-vu": require("emoji-flag-vu"), // "🇻🇺"
|
|
232
|
+
"emoji-flag-wf": require("emoji-flag-wf"), // "🇼🇫"
|
|
233
|
+
"emoji-flag-ws": require("emoji-flag-ws"), // "🇼🇸"
|
|
234
|
+
"emoji-fleur-de-lis": require("emoji-fleur-de-lis"), // "⚜"
|
|
235
|
+
"emoji-foggy": require("emoji-foggy"), // "🌁"
|
|
236
|
+
"emoji-footprints": require("emoji-footprints"), // "👣"
|
|
237
|
+
"emoji-full-moon": require("emoji-full-moon"), // "🌕"
|
|
238
|
+
"emoji-funeral-urn": require("emoji-funeral-urn"), // "⚱"
|
|
239
|
+
"emoji-goat": require("emoji-goat"), // "🐐"
|
|
240
|
+
"emoji-golf": require("emoji-golf"), // "⛳️"
|
|
241
|
+
"emoji-green-apple": require("emoji-green-apple"), // "🍏"
|
|
242
|
+
"emoji-gun": require("emoji-gun"), // "🔫"
|
|
243
|
+
"emoji-haircut": require("emoji-haircut"), // "💇"
|
|
244
|
+
"emoji-hamster": require("emoji-hamster"), // "🐹"
|
|
245
|
+
"emoji-hash": require("emoji-hash"), // "#️⃣"
|
|
246
|
+
"emoji-headphones": require("emoji-headphones"), // "🎧"
|
|
247
|
+
"emoji-heartbeat": require("emoji-heartbeat"), // "💓"
|
|
248
|
+
"emoji-hearts": require("emoji-hearts"), // "♥️"
|
|
249
|
+
"emoji-heavy-check-mark": require("emoji-heavy-check-mark"), // "✔️"
|
|
250
|
+
"emoji-helicopter": require("emoji-helicopter"), // "🚁"
|
|
251
|
+
"emoji-herb": require("emoji-herb"), // "🌿"
|
|
252
|
+
"emoji-hocho": require("emoji-hocho"), // "🔪"
|
|
253
|
+
"emoji-hotdog": require("emoji-hotdog"), // "🌭"
|
|
254
|
+
"emoji-hotel": require("emoji-hotel"), // "🏨"
|
|
255
|
+
"emoji-hotsprings": require("emoji-hotsprings"), // "♨️"
|
|
256
|
+
"emoji-house": require("emoji-house"), // "🏠"
|
|
257
|
+
"emoji-inbox-tray": require("emoji-inbox-tray"), // "📥"
|
|
258
|
+
"emoji-information-source": require("emoji-information-source"), // "ℹ️"
|
|
259
|
+
"emoji-innocent": require("emoji-innocent"), // "😇"
|
|
260
|
+
"emoji-izakaya-lantern": require("emoji-izakaya-lantern"), // "🏮"
|
|
261
|
+
"emoji-japan": require("emoji-japan"), // "🗾"
|
|
262
|
+
"emoji-japanese-castle": require("emoji-japanese-castle"), // "🏯"
|
|
263
|
+
"emoji-joy": require("emoji-joy"), // "😂"
|
|
264
|
+
"emoji-keyboard": require("emoji-keyboard"), // "⌨"
|
|
265
|
+
"emoji-keycap-star": require("emoji-keycap-star"), // "*⃣"
|
|
266
|
+
"emoji-kissing": require("emoji-kissing"), // "😗"
|
|
267
|
+
"emoji-kissing-heart": require("emoji-kissing-heart"), // "😘"
|
|
268
|
+
"emoji-knife-fork-plate": require("emoji-knife-fork-plate"), // "🍽"
|
|
269
|
+
"emoji-koko": require("emoji-koko"), // "🈁"
|
|
270
|
+
"emoji-lantern": require("emoji-lantern"), // "🏮"
|
|
271
|
+
"emoji-laughing": require("emoji-laughing"), // "😆"
|
|
272
|
+
"emoji-leaves": require("emoji-leaves"), // "🍃"
|
|
273
|
+
"emoji-left-luggage": require("emoji-left-luggage"), // "🛅"
|
|
274
|
+
"emoji-libra": require("emoji-libra"), // "♎️"
|
|
275
|
+
"emoji-lightning": require("emoji-lightning"), // "🌩"
|
|
276
|
+
"emoji-lollipop": require("emoji-lollipop"), // "🍭"
|
|
277
|
+
"emoji-love-letter": require("emoji-love-letter"), // "💌"
|
|
278
|
+
"emoji-lower-left-ballpoint-pen": require("emoji-lower-left-ballpoint-pen"), // "🖊"
|
|
279
|
+
"emoji-mag": require("emoji-mag"), // "🔍"
|
|
280
|
+
"emoji-mahjong": require("emoji-mahjong"), // "🀄️"
|
|
281
|
+
"emoji-man-and-woman-holding-hands": require("emoji-man-and-woman-holding-hands"), // "👫"
|
|
282
|
+
"emoji-man-kiss-man": require("emoji-man-kiss-man"), // "👨❤️💋👨"
|
|
283
|
+
"emoji-man-man-boy-boy": require("emoji-man-man-boy-boy"), // "👨👨👦👦"
|
|
284
|
+
"emoji-man-with-turban": require("emoji-man-with-turban"), // "👳"
|
|
285
|
+
"emoji-man-woman-boy": require("emoji-man-woman-boy"), // "👨👩👦"
|
|
286
|
+
"emoji-man-woman-girl": require("emoji-man-woman-girl"), // "👨👩👧"
|
|
287
|
+
"emoji-man-woman-girl-boy": require("emoji-man-woman-girl-boy"), // "👨👩👧👦"
|
|
288
|
+
"emoji-mantelpiece-clock": require("emoji-mantelpiece-clock"), // "🕰"
|
|
289
|
+
"emoji-microphone": require("emoji-microphone"), // "🎤"
|
|
290
|
+
"emoji-middle-finger": require("emoji-middle-finger"), // "🖕"
|
|
291
|
+
"emoji-milky-way": require("emoji-milky-way"), // "🌌"
|
|
292
|
+
"emoji-money-mouth-face": require("emoji-money-mouth-face"), // "🤑"
|
|
293
|
+
"emoji-monkey-face": require("emoji-monkey-face"), // "🐵"
|
|
294
|
+
"emoji-mostly-sunny": require("emoji-mostly-sunny"), // "🌤"
|
|
295
|
+
"emoji-mount-fuji": require("emoji-mount-fuji"), // "🗻"
|
|
296
|
+
"emoji-mountain": require("emoji-mountain"), // "⛰"
|
|
297
|
+
"emoji-mouse2": require("emoji-mouse2"), // "🐁"
|
|
298
|
+
"emoji-mushroom": require("emoji-mushroom"), // "🍄"
|
|
299
|
+
"emoji-name-badge": require("emoji-name-badge"), // "📛"
|
|
300
|
+
"emoji-non-potable-water": require("emoji-non-potable-water"), // "🚱"
|
|
301
|
+
"emoji-nose": require("emoji-nose"), // "👃"
|
|
302
|
+
"emoji-o2": require("emoji-o2"), // "🅾️"
|
|
303
|
+
"emoji-om-symbol": require("emoji-om-symbol"), // "🕉"
|
|
304
|
+
"emoji-on": require("emoji-on"), // "🔛"
|
|
305
|
+
"emoji-oncoming-taxi": require("emoji-oncoming-taxi"), // "🚖"
|
|
306
|
+
"emoji-one": require("emoji-one"), // "1️⃣"
|
|
307
|
+
"emoji-outbox-tray": require("emoji-outbox-tray"), // "📤"
|
|
308
|
+
"emoji-package": require("emoji-package"), // "📦"
|
|
309
|
+
"emoji-palm-tree": require("emoji-palm-tree"), // "🌴"
|
|
310
|
+
"emoji-paperclip": require("emoji-paperclip"), // "📎"
|
|
311
|
+
"emoji-parking": require("emoji-parking"), // "🅿️"
|
|
312
|
+
"emoji-part-alternation-mark": require("emoji-part-alternation-mark"), // "〽️"
|
|
313
|
+
"emoji-passport-control": require("emoji-passport-control"), // "🛂"
|
|
314
|
+
"emoji-phone": require("emoji-phone"), // "☎️"
|
|
315
|
+
"emoji-pig": require("emoji-pig"), // "🐷"
|
|
316
|
+
"emoji-pig-nose": require("emoji-pig-nose"), // "🐽"
|
|
317
|
+
"emoji-pig2": require("emoji-pig2"), // "🐖"
|
|
318
|
+
"emoji-pill": require("emoji-pill"), // "💊"
|
|
319
|
+
"emoji-police-car": require("emoji-police-car"), // "🚓"
|
|
320
|
+
"emoji-poodle": require("emoji-poodle"), // "🐩"
|
|
321
|
+
"emoji-poop": require("emoji-poop"), // "💩"
|
|
322
|
+
"emoji-postal-horn": require("emoji-postal-horn"), // "📯"
|
|
323
|
+
"emoji-postbox": require("emoji-postbox"), // "📮"
|
|
324
|
+
"emoji-purse": require("emoji-purse"), // "👛"
|
|
325
|
+
"emoji-rainbow": require("emoji-rainbow"), // "🌈"
|
|
326
|
+
"emoji-raised-hand": require("emoji-raised-hand"), // "✋"
|
|
327
|
+
"emoji-repeat": require("emoji-repeat"), // "🔁"
|
|
328
|
+
"emoji-repeat-one": require("emoji-repeat-one"), // "🔂"
|
|
329
|
+
"emoji-rice": require("emoji-rice"), // "🍚"
|
|
330
|
+
"emoji-ring": require("emoji-ring"), // "💍"
|
|
331
|
+
"emoji-rooster": require("emoji-rooster"), // "🐓"
|
|
332
|
+
"emoji-rose": require("emoji-rose"), // "🌹"
|
|
333
|
+
"emoji-rotating-light": require("emoji-rotating-light"), // "🚨"
|
|
334
|
+
"emoji-running": require("emoji-running"), // "🏃"
|
|
335
|
+
"emoji-satellite": require("emoji-satellite"), // "🛰"
|
|
336
|
+
"emoji-saxophone": require("emoji-saxophone"), // "🎷"
|
|
337
|
+
"emoji-scorpion": require("emoji-scorpion"), // "🦂"
|
|
338
|
+
"emoji-scream": require("emoji-scream"), // "😱"
|
|
339
|
+
"emoji-secret": require("emoji-secret"), // "㊙️"
|
|
340
|
+
"emoji-shower": require("emoji-shower"), // "🚿"
|
|
341
|
+
"emoji-signal-strength": require("emoji-signal-strength"), // "📶"
|
|
342
|
+
"emoji-six": require("emoji-six"), // "6️⃣"
|
|
343
|
+
"emoji-ski": require("emoji-ski"), // "🎿"
|
|
344
|
+
"emoji-small-red-triangle": require("emoji-small-red-triangle"), // "🔺"
|
|
345
|
+
"emoji-smile": require("emoji-smile"), // "😄"
|
|
346
|
+
"emoji-smile-cat": require("emoji-smile-cat"), // "😸"
|
|
347
|
+
"emoji-smirk-cat": require("emoji-smirk-cat"), // "😼"
|
|
348
|
+
"emoji-space-invader": require("emoji-space-invader"), // "👾"
|
|
349
|
+
"emoji-sparkle": require("emoji-sparkle"), // "❇️"
|
|
350
|
+
"emoji-sparkler": require("emoji-sparkler"), // "🎇"
|
|
351
|
+
"emoji-star-and-crescent": require("emoji-star-and-crescent"), // "☪"
|
|
352
|
+
"emoji-star-of-david": require("emoji-star-of-david"), // "✡"
|
|
353
|
+
"emoji-steam-locomotive": require("emoji-steam-locomotive"), // "🚂"
|
|
354
|
+
"emoji-strawberry": require("emoji-strawberry"), // "🍓"
|
|
355
|
+
"emoji-sunflower": require("emoji-sunflower"), // "🌻"
|
|
356
|
+
"emoji-sunglasses": require("emoji-sunglasses"), // "😎"
|
|
357
|
+
"emoji-sushi": require("emoji-sushi"), // "🍣"
|
|
358
|
+
"emoji-sweat": require("emoji-sweat"), // "😓"
|
|
359
|
+
"emoji-sweat-smile": require("emoji-sweat-smile"), // "😅"
|
|
360
|
+
"emoji-synagogue": require("emoji-synagogue"), // "🕍"
|
|
361
|
+
"emoji-taxi": require("emoji-taxi"), // "🚕"
|
|
362
|
+
"emoji-tea": require("emoji-tea"), // "🍵"
|
|
363
|
+
"emoji-thinking-face": require("emoji-thinking-face"), // "🤔"
|
|
364
|
+
"emoji-three-button-mouse": require("emoji-three-button-mouse"), // "🖱"
|
|
365
|
+
"emoji-tm": require("emoji-tm"), // "™️"
|
|
366
|
+
"emoji-top": require("emoji-top"), // "🔝"
|
|
367
|
+
"emoji-trackball": require("emoji-trackball"), // "🖲"
|
|
368
|
+
"emoji-trolleybus": require("emoji-trolleybus"), // "🚎"
|
|
369
|
+
"emoji-tulip": require("emoji-tulip"), // "🌷"
|
|
370
|
+
"emoji-two": require("emoji-two"), // "2️⃣"
|
|
371
|
+
"emoji-two-men-holding-hands": require("emoji-two-men-holding-hands"), // "👬"
|
|
372
|
+
"emoji-u6709": require("emoji-u6709"), // "🈶"
|
|
373
|
+
"emoji-u7533": require("emoji-u7533"), // "🈸"
|
|
374
|
+
"emoji-umbrella-on-ground": require("emoji-umbrella-on-ground"), // "⛱"
|
|
375
|
+
"emoji-us": require("emoji-us"), // "🇺🇸"
|
|
376
|
+
"emoji-vhs": require("emoji-vhs"), // "📼"
|
|
377
|
+
"emoji-volcano": require("emoji-volcano"), // "🌋"
|
|
378
|
+
"emoji-wedding": require("emoji-wedding"), // "💒"
|
|
379
|
+
"emoji-weight-lifter": require("emoji-weight-lifter"), // "🏋"
|
|
380
|
+
"emoji-whale": require("emoji-whale"), // "🐳"
|
|
381
|
+
"emoji-white-flower": require("emoji-white-flower"), // "💮"
|
|
382
|
+
"emoji-white-medium-square": require("emoji-white-medium-square"), // "◻️"
|
|
383
|
+
"emoji-white-square-button": require("emoji-white-square-button"), // "🔳"
|
|
384
|
+
"emoji-woman-woman-girl-boy": require("emoji-woman-woman-girl-boy"), // "👩👩👧👦"
|
|
385
|
+
"emoji-world-map": require("emoji-world-map"), // "🗺"
|
|
386
|
+
"emoji-zero": require("emoji-zero") // "0️⃣"
|
|
387
|
+
}
|
|
388
|
+
function stringIdentity(str) {
|
|
389
|
+
if (!isString(str) && ($String(str) === str)) {
|
|
390
|
+
return immediateError(
|
|
391
|
+
"The first argument to stringIdentity must be a string, and not an object string (e.g. new String(\"hi\")). Received: " + String(str),
|
|
392
|
+
ErrorType.TypeError
|
|
393
|
+
)
|
|
394
|
+
} else {
|
|
395
|
+
try {
|
|
396
|
+
return stringIdentityCommonStrings(str)
|
|
397
|
+
} catch {
|
|
398
|
+
return generalConcat(...(splitString(str, emptyString).map((currentValue) => {
|
|
399
|
+
try {
|
|
400
|
+
return stringIdentityCommonStrings(currentValue)
|
|
401
|
+
} catch {
|
|
402
|
+
return fromCharCode(currentValue.charCodeAt(0))
|
|
403
|
+
}
|
|
404
|
+
})))
|
|
405
|
+
}
|
|
406
|
+
}
|
|
407
|
+
}
|
|
408
|
+
|
|
409
|
+
function stringIdentityCommonStrings(str) {
|
|
410
|
+
if (eqstrings(str, emptyString)) return emptyString
|
|
411
|
+
if (eqstrings(str, space)) return space
|
|
412
|
+
if (eqstrings(str, lowercase_a)) return lowercase_a
|
|
413
|
+
if (eqstrings(str, lowercase_b)) return lowercase_b
|
|
414
|
+
if (eqstrings(str, lowercase_c)) return lowercase_c
|
|
415
|
+
if (eqstrings(str, lowercase_d)) return lowercase_d
|
|
416
|
+
if (eqstrings(str, lowercase_e)) return lowercase_e
|
|
417
|
+
if (eqstrings(str, lowercase_f)) return lowercase_f
|
|
418
|
+
if (eqstrings(str, lowercase_g)) return lowercase_g
|
|
419
|
+
if (eqstrings(str, lowercase_h)) return lowercase_h
|
|
420
|
+
if (eqstrings(str, lowercase_i)) return lowercase_i
|
|
421
|
+
if (eqstrings(str, lowercase_j)) return lowercase_j
|
|
422
|
+
if (eqstrings(str, lowercase_k)) return lowercase_k
|
|
423
|
+
if (eqstrings(str, lowercase_l)) return lowercase_l
|
|
424
|
+
if (eqstrings(str, lowercase_m)) return lowercase_m
|
|
425
|
+
if (eqstrings(str, lowercase_n)) return lowercase_n
|
|
426
|
+
if (eqstrings(str, lowercase_o)) return lowercase_o
|
|
427
|
+
if (eqstrings(str, lowercase_p)) return lowercase_p
|
|
428
|
+
if (eqstrings(str, lowercase_q)) return lowercase_q
|
|
429
|
+
if (eqstrings(str, lowercase_r)) return lowercase_r
|
|
430
|
+
if (eqstrings(str, lowercase_s)) return lowercase_s
|
|
431
|
+
if (eqstrings(str, lowercase_t)) return lowercase_t
|
|
432
|
+
if (eqstrings(str, lowercase_u)) return lowercase_u
|
|
433
|
+
if (eqstrings(str, lowercase_v)) return lowercase_v
|
|
434
|
+
if (eqstrings(str, lowercase_w)) return lowercase_w
|
|
435
|
+
if (eqstrings(str, lowercase_x)) return lowercase_x
|
|
436
|
+
if (eqstrings(str, lowercase_y)) return lowercase_y
|
|
437
|
+
if (eqstrings(str, lowercase_z)) return lowercase_z
|
|
438
|
+
if (eqstrings(str, uppercase_a)) return uppercase_a
|
|
439
|
+
if (eqstrings(str, uppercase_b)) return uppercase_b
|
|
440
|
+
if (eqstrings(str, uppercase_c)) return uppercase_c
|
|
441
|
+
if (eqstrings(str, uppercase_d)) return uppercase_d
|
|
442
|
+
if (eqstrings(str, uppercase_e)) return uppercase_e
|
|
443
|
+
if (eqstrings(str, uppercase_f)) return uppercase_f
|
|
444
|
+
if (eqstrings(str, uppercase_g)) return uppercase_g
|
|
445
|
+
if (eqstrings(str, uppercase_h)) return uppercase_h
|
|
446
|
+
if (eqstrings(str, uppercase_i)) return uppercase_i
|
|
447
|
+
if (eqstrings(str, uppercase_j)) return uppercase_j
|
|
448
|
+
if (eqstrings(str, uppercase_k)) return uppercase_k
|
|
449
|
+
if (eqstrings(str, uppercase_l)) return uppercase_l
|
|
450
|
+
if (eqstrings(str, uppercase_m)) return uppercase_m
|
|
451
|
+
if (eqstrings(str, uppercase_n)) return uppercase_n
|
|
452
|
+
if (eqstrings(str, uppercase_o)) return uppercase_o
|
|
453
|
+
if (eqstrings(str, uppercase_p)) return uppercase_p
|
|
454
|
+
if (eqstrings(str, uppercase_q)) return uppercase_q
|
|
455
|
+
if (eqstrings(str, uppercase_r)) return uppercase_r
|
|
456
|
+
if (eqstrings(str, uppercase_s)) return uppercase_s
|
|
457
|
+
if (eqstrings(str, uppercase_t)) return uppercase_t
|
|
458
|
+
if (eqstrings(str, uppercase_u)) return uppercase_u
|
|
459
|
+
if (eqstrings(str, uppercase_v)) return uppercase_v
|
|
460
|
+
if (eqstrings(str, uppercase_w)) return uppercase_w
|
|
461
|
+
if (eqstrings(str, uppercase_x)) return uppercase_x
|
|
462
|
+
if (eqstrings(str, uppercase_y)) return uppercase_y
|
|
463
|
+
if (eqstrings(str, uppercase_z)) return uppercase_z
|
|
464
|
+
if (eqstrings(str, lowercase_alphabet)) return lowercase_alphabet
|
|
465
|
+
if (eqstrings(str, uppercase_alphabet)) return uppercase_alphabet
|
|
466
|
+
if (eqstrings(str, fizz)) return fizz
|
|
467
|
+
if (eqstrings(str, buzz)) return buzz
|
|
468
|
+
if (eqstrings(str, fizzbuzz)) return fizzbuzz
|
|
469
|
+
if (eqstrings(str, creashaks)) return creashaks
|
|
470
|
+
if (eqstrings(str, organzine)) return organzine
|
|
471
|
+
if (eqstrings(str, creashaksOrganzine)) return creashaksOrganzine
|
|
472
|
+
if (eqstrings(str, emojis["emoji-100"])) return emojis["emoji-100"]
|
|
473
|
+
if (eqstrings(str, emojis["emoji-1234"])) return emojis["emoji-1234"]
|
|
474
|
+
if (eqstrings(str, emojis["emoji-abcd"])) return emojis["emoji-abcd"]
|
|
475
|
+
if (eqstrings(str, emojis["emoji-airplane-departure"])) return emojis["emoji-airplane-departure"]
|
|
476
|
+
if (eqstrings(str, emojis["emoji-alembic"])) return emojis["emoji-alembic"]
|
|
477
|
+
if (eqstrings(str, emojis["emoji-ant"])) return emojis["emoji-ant"]
|
|
478
|
+
if (eqstrings(str, emojis["emoji-apple"])) return emojis["emoji-apple"]
|
|
479
|
+
if (eqstrings(str, emojis["emoji-articulated-lorry"])) return emojis["emoji-articulated-lorry"]
|
|
480
|
+
if (eqstrings(str, emojis["emoji-bar-chart"])) return emojis["emoji-bar-chart"]
|
|
481
|
+
if (eqstrings(str, emojis["emoji-basketball"])) return emojis["emoji-basketball"]
|
|
482
|
+
if (eqstrings(str, emojis["emoji-bath"])) return emojis["emoji-bath"]
|
|
483
|
+
if (eqstrings(str, emojis["emoji-blue-book"])) return emojis["emoji-blue-book"]
|
|
484
|
+
if (eqstrings(str, emojis["emoji-bookmark-tabs"])) return emojis["emoji-bookmark-tabs"]
|
|
485
|
+
if (eqstrings(str, emojis["emoji-bread"])) return emojis["emoji-bread"]
|
|
486
|
+
if (eqstrings(str, emojis["emoji-bulb"])) return emojis["emoji-bulb"]
|
|
487
|
+
if (eqstrings(str, emojis["emoji-camping"])) return emojis["emoji-camping"]
|
|
488
|
+
if (eqstrings(str, emojis["emoji-candle"])) return emojis["emoji-candle"]
|
|
489
|
+
if (eqstrings(str, emojis["emoji-car"])) return emojis["emoji-car"]
|
|
490
|
+
if (eqstrings(str, emojis["emoji-card-index-dividers"])) return emojis["emoji-card-index-dividers"]
|
|
491
|
+
if (eqstrings(str, emojis["emoji-cat"])) return emojis["emoji-cat"]
|
|
492
|
+
if (eqstrings(str, emojis["emoji-cd"])) return emojis["emoji-cd"]
|
|
493
|
+
if (eqstrings(str, emojis["emoji-champagne"])) return emojis["emoji-champagne"]
|
|
494
|
+
if (eqstrings(str, emojis["emoji-checkered-flag"])) return emojis["emoji-checkered-flag"]
|
|
495
|
+
if (eqstrings(str, emojis["emoji-cherry-blossom"])) return emojis["emoji-cherry-blossom"]
|
|
496
|
+
if (eqstrings(str, emojis["emoji-city-sunrise"])) return emojis["emoji-city-sunrise"]
|
|
497
|
+
if (eqstrings(str, emojis["emoji-cityscape"])) return emojis["emoji-cityscape"]
|
|
498
|
+
if (eqstrings(str, emojis["emoji-clapper"])) return emojis["emoji-clapper"]
|
|
499
|
+
if (eqstrings(str, emojis["emoji-clock1"])) return emojis["emoji-clock1"]
|
|
500
|
+
if (eqstrings(str, emojis["emoji-clock10"])) return emojis["emoji-clock10"]
|
|
501
|
+
if (eqstrings(str, emojis["emoji-clock12"])) return emojis["emoji-clock12"]
|
|
502
|
+
if (eqstrings(str, emojis["emoji-clock3"])) return emojis["emoji-clock3"]
|
|
503
|
+
if (eqstrings(str, emojis["emoji-clock330"])) return emojis["emoji-clock330"]
|
|
504
|
+
if (eqstrings(str, emojis["emoji-clock530"])) return emojis["emoji-clock530"]
|
|
505
|
+
if (eqstrings(str, emojis["emoji-clock6"])) return emojis["emoji-clock6"]
|
|
506
|
+
if (eqstrings(str, emojis["emoji-clock630"])) return emojis["emoji-clock630"]
|
|
507
|
+
if (eqstrings(str, emojis["emoji-clock830"])) return emojis["emoji-clock830"]
|
|
508
|
+
if (eqstrings(str, emojis["emoji-clock9"])) return emojis["emoji-clock9"]
|
|
509
|
+
if (eqstrings(str, emojis["emoji-cocktail"])) return emojis["emoji-cocktail"]
|
|
510
|
+
if (eqstrings(str, emojis["emoji-coffee"])) return emojis["emoji-coffee"]
|
|
511
|
+
if (eqstrings(str, emojis["emoji-comet"])) return emojis["emoji-comet"]
|
|
512
|
+
if (eqstrings(str, emojis["emoji-compression"])) return emojis["emoji-compression"]
|
|
513
|
+
if (eqstrings(str, emojis["emoji-computer"])) return emojis["emoji-computer"]
|
|
514
|
+
if (eqstrings(str, emojis["emoji-construction"])) return emojis["emoji-construction"]
|
|
515
|
+
if (eqstrings(str, emojis["emoji-control-knobs"])) return emojis["emoji-control-knobs"]
|
|
516
|
+
if (eqstrings(str, emojis["emoji-cop"])) return emojis["emoji-cop"]
|
|
517
|
+
if (eqstrings(str, emojis["emoji-copyright"])) return emojis["emoji-copyright"]
|
|
518
|
+
if (eqstrings(str, emojis["emoji-crab"])) return emojis["emoji-crab"]
|
|
519
|
+
if (eqstrings(str, emojis["emoji-crescent-moon"])) return emojis["emoji-crescent-moon"]
|
|
520
|
+
if (eqstrings(str, emojis["emoji-crossed-flags"])) return emojis["emoji-crossed-flags"]
|
|
521
|
+
if (eqstrings(str, emojis["emoji-cry"])) return emojis["emoji-cry"]
|
|
522
|
+
if (eqstrings(str, emojis["emoji-crystal-ball"])) return emojis["emoji-crystal-ball"]
|
|
523
|
+
if (eqstrings(str, emojis["emoji-currency-exchange"])) return emojis["emoji-currency-exchange"]
|
|
524
|
+
if (eqstrings(str, emojis["emoji-dark-sunglasses"])) return emojis["emoji-dark-sunglasses"]
|
|
525
|
+
if (eqstrings(str, emojis["emoji-dart"])) return emojis["emoji-dart"]
|
|
526
|
+
if (eqstrings(str, emojis["emoji-de"])) return emojis["emoji-de"]
|
|
527
|
+
if (eqstrings(str, emojis["emoji-department-store"])) return emojis["emoji-department-store"]
|
|
528
|
+
if (eqstrings(str, emojis["emoji-door"])) return emojis["emoji-door"]
|
|
529
|
+
if (eqstrings(str, emojis["emoji-doughnut"])) return emojis["emoji-doughnut"]
|
|
530
|
+
if (eqstrings(str, emojis["emoji-egg"])) return emojis["emoji-egg"]
|
|
531
|
+
if (eqstrings(str, emojis["emoji-eight-pointed-black-star"])) return emojis["emoji-eight-pointed-black-star"]
|
|
532
|
+
if (eqstrings(str, emojis["emoji-eight-spoked-asterisk"])) return emojis["emoji-eight-spoked-asterisk"]
|
|
533
|
+
if (eqstrings(str, emojis["emoji-envelope-with-arrow"])) return emojis["emoji-envelope-with-arrow"]
|
|
534
|
+
if (eqstrings(str, emojis["emoji-es"])) return emojis["emoji-es"]
|
|
535
|
+
if (eqstrings(str, emojis["emoji-euro"])) return emojis["emoji-euro"]
|
|
536
|
+
if (eqstrings(str, emojis["emoji-eyeglasses"])) return emojis["emoji-eyeglasses"]
|
|
537
|
+
if (eqstrings(str, emojis["emoji-eyes"])) return emojis["emoji-eyes"]
|
|
538
|
+
if (eqstrings(str, emojis["emoji-family"])) return emojis["emoji-family"]
|
|
539
|
+
if (eqstrings(str, emojis["emoji-film-projector"])) return emojis["emoji-film-projector"]
|
|
540
|
+
if (eqstrings(str, emojis["emoji-fire"])) return emojis["emoji-fire"]
|
|
541
|
+
if (eqstrings(str, emojis["emoji-fire-engine"])) return emojis["emoji-fire-engine"]
|
|
542
|
+
if (eqstrings(str, emojis["emoji-fireworks"])) return emojis["emoji-fireworks"]
|
|
543
|
+
if (eqstrings(str, emojis["emoji-fish"])) return emojis["emoji-fish"]
|
|
544
|
+
if (eqstrings(str, emojis["emoji-flag-ag"])) return emojis["emoji-flag-ag"]
|
|
545
|
+
if (eqstrings(str, emojis["emoji-flag-am"])) return emojis["emoji-flag-am"]
|
|
546
|
+
if (eqstrings(str, emojis["emoji-flag-ax"])) return emojis["emoji-flag-ax"]
|
|
547
|
+
if (eqstrings(str, emojis["emoji-flag-bz"])) return emojis["emoji-flag-bz"]
|
|
548
|
+
if (eqstrings(str, emojis["emoji-flag-cm"])) return emojis["emoji-flag-cm"]
|
|
549
|
+
if (eqstrings(str, emojis["emoji-flag-cx"])) return emojis["emoji-flag-cx"]
|
|
550
|
+
if (eqstrings(str, emojis["emoji-flag-ee"])) return emojis["emoji-flag-ee"]
|
|
551
|
+
if (eqstrings(str, emojis["emoji-flag-es"])) return emojis["emoji-flag-es"]
|
|
552
|
+
if (eqstrings(str, emojis["emoji-flag-ga"])) return emojis["emoji-flag-ga"]
|
|
553
|
+
if (eqstrings(str, emojis["emoji-flag-gu"])) return emojis["emoji-flag-gu"]
|
|
554
|
+
if (eqstrings(str, emojis["emoji-flag-je"])) return emojis["emoji-flag-je"]
|
|
555
|
+
if (eqstrings(str, emojis["emoji-flag-kh"])) return emojis["emoji-flag-kh"]
|
|
556
|
+
if (eqstrings(str, emojis["emoji-flag-kn"])) return emojis["emoji-flag-kn"]
|
|
557
|
+
if (eqstrings(str, emojis["emoji-flag-na"])) return emojis["emoji-flag-na"]
|
|
558
|
+
if (eqstrings(str, emojis["emoji-flag-nu"])) return emojis["emoji-flag-nu"]
|
|
559
|
+
if (eqstrings(str, emojis["emoji-flag-pf"])) return emojis["emoji-flag-pf"]
|
|
560
|
+
if (eqstrings(str, emojis["emoji-flag-pr"])) return emojis["emoji-flag-pr"]
|
|
561
|
+
if (eqstrings(str, emojis["emoji-flag-pt"])) return emojis["emoji-flag-pt"]
|
|
562
|
+
if (eqstrings(str, emojis["emoji-flag-sh"])) return emojis["emoji-flag-sh"]
|
|
563
|
+
if (eqstrings(str, emojis["emoji-flag-so"])) return emojis["emoji-flag-so"]
|
|
564
|
+
if (eqstrings(str, emojis["emoji-flag-ss"])) return emojis["emoji-flag-ss"]
|
|
565
|
+
if (eqstrings(str, emojis["emoji-flag-vu"])) return emojis["emoji-flag-vu"]
|
|
566
|
+
if (eqstrings(str, emojis["emoji-flag-wf"])) return emojis["emoji-flag-wf"]
|
|
567
|
+
if (eqstrings(str, emojis["emoji-flag-ws"])) return emojis["emoji-flag-ws"]
|
|
568
|
+
if (eqstrings(str, emojis["emoji-fleur-de-lis"])) return emojis["emoji-fleur-de-lis"]
|
|
569
|
+
if (eqstrings(str, emojis["emoji-foggy"])) return emojis["emoji-foggy"]
|
|
570
|
+
if (eqstrings(str, emojis["emoji-footprints"])) return emojis["emoji-footprints"]
|
|
571
|
+
if (eqstrings(str, emojis["emoji-full-moon"])) return emojis["emoji-full-moon"]
|
|
572
|
+
if (eqstrings(str, emojis["emoji-funeral-urn"])) return emojis["emoji-funeral-urn"]
|
|
573
|
+
if (eqstrings(str, emojis["emoji-goat"])) return emojis["emoji-goat"]
|
|
574
|
+
if (eqstrings(str, emojis["emoji-golf"])) return emojis["emoji-golf"]
|
|
575
|
+
if (eqstrings(str, emojis["emoji-green-apple"])) return emojis["emoji-green-apple"]
|
|
576
|
+
if (eqstrings(str, emojis["emoji-gun"])) return emojis["emoji-gun"]
|
|
577
|
+
if (eqstrings(str, emojis["emoji-haircut"])) return emojis["emoji-haircut"]
|
|
578
|
+
if (eqstrings(str, emojis["emoji-hamster"])) return emojis["emoji-hamster"]
|
|
579
|
+
if (eqstrings(str, emojis["emoji-hash"])) return emojis["emoji-hash"]
|
|
580
|
+
if (eqstrings(str, emojis["emoji-headphones"])) return emojis["emoji-headphones"]
|
|
581
|
+
if (eqstrings(str, emojis["emoji-heartbeat"])) return emojis["emoji-heartbeat"]
|
|
582
|
+
if (eqstrings(str, emojis["emoji-hearts"])) return emojis["emoji-hearts"]
|
|
583
|
+
if (eqstrings(str, emojis["emoji-heavy-check-mark"])) return emojis["emoji-heavy-check-mark"]
|
|
584
|
+
if (eqstrings(str, emojis["emoji-helicopter"])) return emojis["emoji-helicopter"]
|
|
585
|
+
if (eqstrings(str, emojis["emoji-herb"])) return emojis["emoji-herb"]
|
|
586
|
+
if (eqstrings(str, emojis["emoji-hocho"])) return emojis["emoji-hocho"]
|
|
587
|
+
if (eqstrings(str, emojis["emoji-hotdog"])) return emojis["emoji-hotdog"]
|
|
588
|
+
if (eqstrings(str, emojis["emoji-hotel"])) return emojis["emoji-hotel"]
|
|
589
|
+
if (eqstrings(str, emojis["emoji-hotsprings"])) return emojis["emoji-hotsprings"]
|
|
590
|
+
if (eqstrings(str, emojis["emoji-house"])) return emojis["emoji-house"]
|
|
591
|
+
if (eqstrings(str, emojis["emoji-inbox-tray"])) return emojis["emoji-inbox-tray"]
|
|
592
|
+
if (eqstrings(str, emojis["emoji-information-source"])) return emojis["emoji-information-source"]
|
|
593
|
+
if (eqstrings(str, emojis["emoji-innocent"])) return emojis["emoji-innocent"]
|
|
594
|
+
if (eqstrings(str, emojis["emoji-izakaya-lantern"])) return emojis["emoji-izakaya-lantern"]
|
|
595
|
+
if (eqstrings(str, emojis["emoji-japan"])) return emojis["emoji-japan"]
|
|
596
|
+
if (eqstrings(str, emojis["emoji-japanese-castle"])) return emojis["emoji-japanese-castle"]
|
|
597
|
+
if (eqstrings(str, emojis["emoji-joy"])) return emojis["emoji-joy"]
|
|
598
|
+
if (eqstrings(str, emojis["emoji-keyboard"])) return emojis["emoji-keyboard"]
|
|
599
|
+
if (eqstrings(str, emojis["emoji-keycap-star"])) return emojis["emoji-keycap-star"]
|
|
600
|
+
if (eqstrings(str, emojis["emoji-kissing"])) return emojis["emoji-kissing"]
|
|
601
|
+
if (eqstrings(str, emojis["emoji-kissing-heart"])) return emojis["emoji-kissing-heart"]
|
|
602
|
+
if (eqstrings(str, emojis["emoji-knife-fork-plate"])) return emojis["emoji-knife-fork-plate"]
|
|
603
|
+
if (eqstrings(str, emojis["emoji-koko"])) return emojis["emoji-koko"]
|
|
604
|
+
if (eqstrings(str, emojis["emoji-lantern"])) return emojis["emoji-lantern"]
|
|
605
|
+
if (eqstrings(str, emojis["emoji-laughing"])) return emojis["emoji-laughing"]
|
|
606
|
+
if (eqstrings(str, emojis["emoji-leaves"])) return emojis["emoji-leaves"]
|
|
607
|
+
if (eqstrings(str, emojis["emoji-left-luggage"])) return emojis["emoji-left-luggage"]
|
|
608
|
+
if (eqstrings(str, emojis["emoji-libra"])) return emojis["emoji-libra"]
|
|
609
|
+
if (eqstrings(str, emojis["emoji-lightning"])) return emojis["emoji-lightning"]
|
|
610
|
+
if (eqstrings(str, emojis["emoji-lollipop"])) return emojis["emoji-lollipop"]
|
|
611
|
+
if (eqstrings(str, emojis["emoji-love-letter"])) return emojis["emoji-love-letter"]
|
|
612
|
+
if (eqstrings(str, emojis["emoji-lower-left-ballpoint-pen"])) return emojis["emoji-lower-left-ballpoint-pen"]
|
|
613
|
+
if (eqstrings(str, emojis["emoji-mag"])) return emojis["emoji-mag"]
|
|
614
|
+
if (eqstrings(str, emojis["emoji-mahjong"])) return emojis["emoji-mahjong"]
|
|
615
|
+
if (eqstrings(str, emojis["emoji-man-and-woman-holding-hands"])) return emojis["emoji-man-and-woman-holding-hands"]
|
|
616
|
+
if (eqstrings(str, emojis["emoji-man-kiss-man"])) return emojis["emoji-man-kiss-man"]
|
|
617
|
+
if (eqstrings(str, emojis["emoji-man-man-boy-boy"])) return emojis["emoji-man-man-boy-boy"]
|
|
618
|
+
if (eqstrings(str, emojis["emoji-man-with-turban"])) return emojis["emoji-man-with-turban"]
|
|
619
|
+
if (eqstrings(str, emojis["emoji-man-woman-boy"])) return emojis["emoji-man-woman-boy"]
|
|
620
|
+
if (eqstrings(str, emojis["emoji-man-woman-girl"])) return emojis["emoji-man-woman-girl"]
|
|
621
|
+
if (eqstrings(str, emojis["emoji-man-woman-girl-boy"])) return emojis["emoji-man-woman-girl-boy"]
|
|
622
|
+
if (eqstrings(str, emojis["emoji-mantelpiece-clock"])) return emojis["emoji-mantelpiece-clock"]
|
|
623
|
+
if (eqstrings(str, emojis["emoji-microphone"])) return emojis["emoji-microphone"]
|
|
624
|
+
if (eqstrings(str, emojis["emoji-middle-finger"])) return emojis["emoji-middle-finger"]
|
|
625
|
+
if (eqstrings(str, emojis["emoji-milky-way"])) return emojis["emoji-milky-way"]
|
|
626
|
+
if (eqstrings(str, emojis["emoji-money-mouth-face"])) return emojis["emoji-money-mouth-face"]
|
|
627
|
+
if (eqstrings(str, emojis["emoji-monkey-face"])) return emojis["emoji-monkey-face"]
|
|
628
|
+
if (eqstrings(str, emojis["emoji-mostly-sunny"])) return emojis["emoji-mostly-sunny"]
|
|
629
|
+
if (eqstrings(str, emojis["emoji-mount-fuji"])) return emojis["emoji-mount-fuji"]
|
|
630
|
+
if (eqstrings(str, emojis["emoji-mountain"])) return emojis["emoji-mountain"]
|
|
631
|
+
if (eqstrings(str, emojis["emoji-mouse2"])) return emojis["emoji-mouse2"]
|
|
632
|
+
if (eqstrings(str, emojis["emoji-mushroom"])) return emojis["emoji-mushroom"]
|
|
633
|
+
if (eqstrings(str, emojis["emoji-name-badge"])) return emojis["emoji-name-badge"]
|
|
634
|
+
if (eqstrings(str, emojis["emoji-non-potable-water"])) return emojis["emoji-non-potable-water"]
|
|
635
|
+
if (eqstrings(str, emojis["emoji-nose"])) return emojis["emoji-nose"]
|
|
636
|
+
if (eqstrings(str, emojis["emoji-o2"])) return emojis["emoji-o2"]
|
|
637
|
+
if (eqstrings(str, emojis["emoji-om-symbol"])) return emojis["emoji-om-symbol"]
|
|
638
|
+
if (eqstrings(str, emojis["emoji-on"])) return emojis["emoji-on"]
|
|
639
|
+
if (eqstrings(str, emojis["emoji-oncoming-taxi"])) return emojis["emoji-oncoming-taxi"]
|
|
640
|
+
if (eqstrings(str, emojis["emoji-one"])) return emojis["emoji-one"]
|
|
641
|
+
if (eqstrings(str, emojis["emoji-outbox-tray"])) return emojis["emoji-outbox-tray"]
|
|
642
|
+
if (eqstrings(str, emojis["emoji-package"])) return emojis["emoji-package"]
|
|
643
|
+
if (eqstrings(str, emojis["emoji-palm-tree"])) return emojis["emoji-palm-tree"]
|
|
644
|
+
if (eqstrings(str, emojis["emoji-paperclip"])) return emojis["emoji-paperclip"]
|
|
645
|
+
if (eqstrings(str, emojis["emoji-parking"])) return emojis["emoji-parking"]
|
|
646
|
+
if (eqstrings(str, emojis["emoji-part-alternation-mark"])) return emojis["emoji-part-alternation-mark"]
|
|
647
|
+
if (eqstrings(str, emojis["emoji-passport-control"])) return emojis["emoji-passport-control"]
|
|
648
|
+
if (eqstrings(str, emojis["emoji-phone"])) return emojis["emoji-phone"]
|
|
649
|
+
if (eqstrings(str, emojis["emoji-pig"])) return emojis["emoji-pig"]
|
|
650
|
+
if (eqstrings(str, emojis["emoji-pig-nose"])) return emojis["emoji-pig-nose"]
|
|
651
|
+
if (eqstrings(str, emojis["emoji-pig2"])) return emojis["emoji-pig2"]
|
|
652
|
+
if (eqstrings(str, emojis["emoji-pill"])) return emojis["emoji-pill"]
|
|
653
|
+
if (eqstrings(str, emojis["emoji-police-car"])) return emojis["emoji-police-car"]
|
|
654
|
+
if (eqstrings(str, emojis["emoji-poodle"])) return emojis["emoji-poodle"]
|
|
655
|
+
if (eqstrings(str, emojis["emoji-poop"])) return emojis["emoji-poop"]
|
|
656
|
+
if (eqstrings(str, emojis["emoji-postal-horn"])) return emojis["emoji-postal-horn"]
|
|
657
|
+
if (eqstrings(str, emojis["emoji-postbox"])) return emojis["emoji-postbox"]
|
|
658
|
+
if (eqstrings(str, emojis["emoji-purse"])) return emojis["emoji-purse"]
|
|
659
|
+
if (eqstrings(str, emojis["emoji-rainbow"])) return emojis["emoji-rainbow"]
|
|
660
|
+
if (eqstrings(str, emojis["emoji-raised-hand"])) return emojis["emoji-raised-hand"]
|
|
661
|
+
if (eqstrings(str, emojis["emoji-repeat"])) return emojis["emoji-repeat"]
|
|
662
|
+
if (eqstrings(str, emojis["emoji-repeat-one"])) return emojis["emoji-repeat-one"]
|
|
663
|
+
if (eqstrings(str, emojis["emoji-rice"])) return emojis["emoji-rice"]
|
|
664
|
+
if (eqstrings(str, emojis["emoji-ring"])) return emojis["emoji-ring"]
|
|
665
|
+
if (eqstrings(str, emojis["emoji-rooster"])) return emojis["emoji-rooster"]
|
|
666
|
+
if (eqstrings(str, emojis["emoji-rose"])) return emojis["emoji-rose"]
|
|
667
|
+
if (eqstrings(str, emojis["emoji-rotating-light"])) return emojis["emoji-rotating-light"]
|
|
668
|
+
if (eqstrings(str, emojis["emoji-running"])) return emojis["emoji-running"]
|
|
669
|
+
if (eqstrings(str, emojis["emoji-satellite"])) return emojis["emoji-satellite"]
|
|
670
|
+
if (eqstrings(str, emojis["emoji-saxophone"])) return emojis["emoji-saxophone"]
|
|
671
|
+
if (eqstrings(str, emojis["emoji-scorpion"])) return emojis["emoji-scorpion"]
|
|
672
|
+
if (eqstrings(str, emojis["emoji-scream"])) return emojis["emoji-scream"]
|
|
673
|
+
if (eqstrings(str, emojis["emoji-secret"])) return emojis["emoji-secret"]
|
|
674
|
+
if (eqstrings(str, emojis["emoji-shower"])) return emojis["emoji-shower"]
|
|
675
|
+
if (eqstrings(str, emojis["emoji-signal-strength"])) return emojis["emoji-signal-strength"]
|
|
676
|
+
if (eqstrings(str, emojis["emoji-six"])) return emojis["emoji-six"]
|
|
677
|
+
if (eqstrings(str, emojis["emoji-ski"])) return emojis["emoji-ski"]
|
|
678
|
+
if (eqstrings(str, emojis["emoji-small-red-triangle"])) return emojis["emoji-small-red-triangle"]
|
|
679
|
+
if (eqstrings(str, emojis["emoji-smile"])) return emojis["emoji-smile"]
|
|
680
|
+
if (eqstrings(str, emojis["emoji-smile-cat"])) return emojis["emoji-smile-cat"]
|
|
681
|
+
if (eqstrings(str, emojis["emoji-smirk-cat"])) return emojis["emoji-smirk-cat"]
|
|
682
|
+
if (eqstrings(str, emojis["emoji-space-invader"])) return emojis["emoji-space-invader"]
|
|
683
|
+
if (eqstrings(str, emojis["emoji-sparkle"])) return emojis["emoji-sparkle"]
|
|
684
|
+
if (eqstrings(str, emojis["emoji-sparkler"])) return emojis["emoji-sparkler"]
|
|
685
|
+
if (eqstrings(str, emojis["emoji-star-and-crescent"])) return emojis["emoji-star-and-crescent"]
|
|
686
|
+
if (eqstrings(str, emojis["emoji-star-of-david"])) return emojis["emoji-star-of-david"]
|
|
687
|
+
if (eqstrings(str, emojis["emoji-steam-locomotive"])) return emojis["emoji-steam-locomotive"]
|
|
688
|
+
if (eqstrings(str, emojis["emoji-strawberry"])) return emojis["emoji-strawberry"]
|
|
689
|
+
if (eqstrings(str, emojis["emoji-sunflower"])) return emojis["emoji-sunflower"]
|
|
690
|
+
if (eqstrings(str, emojis["emoji-sunglasses"])) return emojis["emoji-sunglasses"]
|
|
691
|
+
if (eqstrings(str, emojis["emoji-sushi"])) return emojis["emoji-sushi"]
|
|
692
|
+
if (eqstrings(str, emojis["emoji-sweat"])) return emojis["emoji-sweat"]
|
|
693
|
+
if (eqstrings(str, emojis["emoji-sweat-smile"])) return emojis["emoji-sweat-smile"]
|
|
694
|
+
if (eqstrings(str, emojis["emoji-synagogue"])) return emojis["emoji-synagogue"]
|
|
695
|
+
if (eqstrings(str, emojis["emoji-taxi"])) return emojis["emoji-taxi"]
|
|
696
|
+
if (eqstrings(str, emojis["emoji-tea"])) return emojis["emoji-tea"]
|
|
697
|
+
if (eqstrings(str, emojis["emoji-thinking-face"])) return emojis["emoji-thinking-face"]
|
|
698
|
+
if (eqstrings(str, emojis["emoji-three-button-mouse"])) return emojis["emoji-three-button-mouse"]
|
|
699
|
+
if (eqstrings(str, emojis["emoji-tm"])) return emojis["emoji-tm"]
|
|
700
|
+
if (eqstrings(str, emojis["emoji-top"])) return emojis["emoji-top"]
|
|
701
|
+
if (eqstrings(str, emojis["emoji-trackball"])) return emojis["emoji-trackball"]
|
|
702
|
+
if (eqstrings(str, emojis["emoji-trolleybus"])) return emojis["emoji-trolleybus"]
|
|
703
|
+
if (eqstrings(str, emojis["emoji-tulip"])) return emojis["emoji-tulip"]
|
|
704
|
+
if (eqstrings(str, emojis["emoji-two"])) return emojis["emoji-two"]
|
|
705
|
+
if (eqstrings(str, emojis["emoji-two-men-holding-hands"])) return emojis["emoji-two-men-holding-hands"]
|
|
706
|
+
if (eqstrings(str, emojis["emoji-u6709"])) return emojis["emoji-u6709"]
|
|
707
|
+
if (eqstrings(str, emojis["emoji-u7533"])) return emojis["emoji-u7533"]
|
|
708
|
+
if (eqstrings(str, emojis["emoji-umbrella-on-ground"])) return emojis["emoji-umbrella-on-ground"]
|
|
709
|
+
if (eqstrings(str, emojis["emoji-us"])) return emojis["emoji-us"]
|
|
710
|
+
if (eqstrings(str, emojis["emoji-vhs"])) return emojis["emoji-vhs"]
|
|
711
|
+
if (eqstrings(str, emojis["emoji-volcano"])) return emojis["emoji-volcano"]
|
|
712
|
+
if (eqstrings(str, emojis["emoji-wedding"])) return emojis["emoji-wedding"]
|
|
713
|
+
if (eqstrings(str, emojis["emoji-weight-lifter"])) return emojis["emoji-weight-lifter"]
|
|
714
|
+
if (eqstrings(str, emojis["emoji-whale"])) return emojis["emoji-whale"]
|
|
715
|
+
if (eqstrings(str, emojis["emoji-white-flower"])) return emojis["emoji-white-flower"]
|
|
716
|
+
if (eqstrings(str, emojis["emoji-white-medium-square"])) return emojis["emoji-white-medium-square"]
|
|
717
|
+
if (eqstrings(str, emojis["emoji-white-square-button"])) return emojis["emoji-white-square-button"]
|
|
718
|
+
if (eqstrings(str, emojis["emoji-woman-woman-girl-boy"])) return emojis["emoji-woman-woman-girl-boy"]
|
|
719
|
+
if (eqstrings(str, emojis["emoji-world-map"])) return emojis["emoji-world-map"]
|
|
720
|
+
if (eqstrings(str, emojis["emoji-zero"])) return emojis["emoji-zero"]
|
|
721
|
+
if (isWDS(str)) return generalConcat(uppercase_w, uppercase_d, uppercase_s)
|
|
722
|
+
immediateError("if you see this error in the console everything's broken and the world is ending. take shelter", ErrorType.BaseError)
|
|
723
|
+
}
|
|
724
|
+
|
|
725
725
|
module.exports = stringIdentity
|