@identity-js/string-identity 1.0.0
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 +40 -0
- package/index.js +717 -0
- package/license +24 -0
- package/package.json +347 -0
- package/test/index.js +1258 -0
package/test/index.js
ADDED
|
@@ -0,0 +1,1258 @@
|
|
|
1
|
+
var assert = require('chai').assert
|
|
2
|
+
var stringIdentity = require('../index')
|
|
3
|
+
|
|
4
|
+
describe('stringIdentity', function () {
|
|
5
|
+
describe('Lowercase Letters', function () {
|
|
6
|
+
it('should return "a" when given "a"', function () {
|
|
7
|
+
assert.strictEqual(stringIdentity('a'), 'a')
|
|
8
|
+
})
|
|
9
|
+
|
|
10
|
+
it('should return "b" when given "b"', function () {
|
|
11
|
+
assert.strictEqual(stringIdentity('b'), 'b')
|
|
12
|
+
})
|
|
13
|
+
|
|
14
|
+
it('should return "c" when given "c"', function () {
|
|
15
|
+
assert.strictEqual(stringIdentity('c'), 'c')
|
|
16
|
+
})
|
|
17
|
+
|
|
18
|
+
it('should return "d" when given "d"', function () {
|
|
19
|
+
assert.strictEqual(stringIdentity('d'), 'd')
|
|
20
|
+
})
|
|
21
|
+
|
|
22
|
+
it('should return "e" when given "e"', function () {
|
|
23
|
+
assert.strictEqual(stringIdentity('e'), 'e')
|
|
24
|
+
})
|
|
25
|
+
|
|
26
|
+
it('should return "f" when given "f"', function () {
|
|
27
|
+
assert.strictEqual(stringIdentity('f'), 'f')
|
|
28
|
+
})
|
|
29
|
+
|
|
30
|
+
it('should return "g" when given "g"', function () {
|
|
31
|
+
assert.strictEqual(stringIdentity('g'), 'g')
|
|
32
|
+
})
|
|
33
|
+
|
|
34
|
+
it('should return "h" when given "h"', function () {
|
|
35
|
+
assert.strictEqual(stringIdentity('h'), 'h')
|
|
36
|
+
})
|
|
37
|
+
|
|
38
|
+
it('should return "i" when given "i"', function () {
|
|
39
|
+
assert.strictEqual(stringIdentity('i'), 'i')
|
|
40
|
+
})
|
|
41
|
+
|
|
42
|
+
it('should return "j" when given "j"', function () {
|
|
43
|
+
assert.strictEqual(stringIdentity('j'), 'j')
|
|
44
|
+
})
|
|
45
|
+
|
|
46
|
+
it('should return "k" when given "k"', function () {
|
|
47
|
+
assert.strictEqual(stringIdentity('k'), 'k')
|
|
48
|
+
})
|
|
49
|
+
|
|
50
|
+
it('should return "l" when given "l"', function () {
|
|
51
|
+
assert.strictEqual(stringIdentity('l'), 'l')
|
|
52
|
+
})
|
|
53
|
+
|
|
54
|
+
it('should return "m" when given "m"', function () {
|
|
55
|
+
assert.strictEqual(stringIdentity('m'), 'm')
|
|
56
|
+
})
|
|
57
|
+
|
|
58
|
+
it('should return "n" when given "n"', function () {
|
|
59
|
+
assert.strictEqual(stringIdentity('n'), 'n')
|
|
60
|
+
})
|
|
61
|
+
|
|
62
|
+
it('should return "o" when given "o"', function () {
|
|
63
|
+
assert.strictEqual(stringIdentity('o'), 'o')
|
|
64
|
+
})
|
|
65
|
+
|
|
66
|
+
it('should return "p" when given "p"', function () {
|
|
67
|
+
assert.strictEqual(stringIdentity('p'), 'p')
|
|
68
|
+
})
|
|
69
|
+
|
|
70
|
+
it('should return "q" when given "q"', function () {
|
|
71
|
+
assert.strictEqual(stringIdentity('q'), 'q')
|
|
72
|
+
})
|
|
73
|
+
|
|
74
|
+
it('should return "r" when given "r"', function () {
|
|
75
|
+
assert.strictEqual(stringIdentity('r'), 'r')
|
|
76
|
+
})
|
|
77
|
+
|
|
78
|
+
it('should return "s" when given "s"', function () {
|
|
79
|
+
assert.strictEqual(stringIdentity('s'), 's')
|
|
80
|
+
})
|
|
81
|
+
|
|
82
|
+
it('should return "t" when given "t"', function () {
|
|
83
|
+
assert.strictEqual(stringIdentity('t'), 't')
|
|
84
|
+
})
|
|
85
|
+
|
|
86
|
+
it('should return "u" when given "u"', function () {
|
|
87
|
+
assert.strictEqual(stringIdentity('u'), 'u')
|
|
88
|
+
})
|
|
89
|
+
|
|
90
|
+
it('should return "v" when given "v"', function () {
|
|
91
|
+
assert.strictEqual(stringIdentity('v'), 'v')
|
|
92
|
+
})
|
|
93
|
+
|
|
94
|
+
it('should return "w" when given "w"', function () {
|
|
95
|
+
assert.strictEqual(stringIdentity('w'), 'w')
|
|
96
|
+
})
|
|
97
|
+
|
|
98
|
+
it('should return "x" when given "x"', function () {
|
|
99
|
+
assert.strictEqual(stringIdentity('x'), 'x')
|
|
100
|
+
})
|
|
101
|
+
|
|
102
|
+
it('should return "y" when given "y"', function () {
|
|
103
|
+
assert.strictEqual(stringIdentity('y'), 'y')
|
|
104
|
+
})
|
|
105
|
+
|
|
106
|
+
it('should return "z" when given "z"', function () {
|
|
107
|
+
assert.strictEqual(stringIdentity('z'), 'z')
|
|
108
|
+
})
|
|
109
|
+
})
|
|
110
|
+
|
|
111
|
+
describe('Uppercase Letters', function () {
|
|
112
|
+
it('should return "A" when given "A"', function () {
|
|
113
|
+
assert.strictEqual(stringIdentity('A'), 'A')
|
|
114
|
+
})
|
|
115
|
+
|
|
116
|
+
it('should return "B" when given "B"', function () {
|
|
117
|
+
assert.strictEqual(stringIdentity('B'), 'B')
|
|
118
|
+
})
|
|
119
|
+
|
|
120
|
+
it('should return "C" when given "C"', function () {
|
|
121
|
+
assert.strictEqual(stringIdentity('C'), 'C')
|
|
122
|
+
})
|
|
123
|
+
|
|
124
|
+
it('should return "D" when given "D"', function () {
|
|
125
|
+
assert.strictEqual(stringIdentity('D'), 'D')
|
|
126
|
+
})
|
|
127
|
+
|
|
128
|
+
it('should return "E" when given "E"', function () {
|
|
129
|
+
assert.strictEqual(stringIdentity('E'), 'E')
|
|
130
|
+
})
|
|
131
|
+
|
|
132
|
+
it('should return "F" when given "F"', function () {
|
|
133
|
+
assert.strictEqual(stringIdentity('F'), 'F')
|
|
134
|
+
})
|
|
135
|
+
|
|
136
|
+
it('should return "G" when given "G"', function () {
|
|
137
|
+
assert.strictEqual(stringIdentity('G'), 'G')
|
|
138
|
+
})
|
|
139
|
+
|
|
140
|
+
it('should return "H" when given "H"', function () {
|
|
141
|
+
assert.strictEqual(stringIdentity('H'), 'H')
|
|
142
|
+
})
|
|
143
|
+
|
|
144
|
+
it('should return "I" when given "I"', function () {
|
|
145
|
+
assert.strictEqual(stringIdentity('I'), 'I')
|
|
146
|
+
})
|
|
147
|
+
|
|
148
|
+
it('should return "J" when given "J"', function () {
|
|
149
|
+
assert.strictEqual(stringIdentity('J'), 'J')
|
|
150
|
+
})
|
|
151
|
+
|
|
152
|
+
it('should return "K" when given "K"', function () {
|
|
153
|
+
assert.strictEqual(stringIdentity('K'), 'K')
|
|
154
|
+
})
|
|
155
|
+
|
|
156
|
+
it('should return "L" when given "L"', function () {
|
|
157
|
+
assert.strictEqual(stringIdentity('L'), 'L')
|
|
158
|
+
})
|
|
159
|
+
|
|
160
|
+
it('should return "M" when given "M"', function () {
|
|
161
|
+
assert.strictEqual(stringIdentity('M'), 'M')
|
|
162
|
+
})
|
|
163
|
+
|
|
164
|
+
it('should return "N" when given "N"', function () {
|
|
165
|
+
assert.strictEqual(stringIdentity('N'), 'N')
|
|
166
|
+
})
|
|
167
|
+
|
|
168
|
+
it('should return "O" when given "O"', function () {
|
|
169
|
+
assert.strictEqual(stringIdentity('O'), 'O')
|
|
170
|
+
})
|
|
171
|
+
|
|
172
|
+
it('should return "P" when given "P"', function () {
|
|
173
|
+
assert.strictEqual(stringIdentity('P'), 'P')
|
|
174
|
+
})
|
|
175
|
+
|
|
176
|
+
it('should return "Q" when given "Q"', function () {
|
|
177
|
+
assert.strictEqual(stringIdentity('Q'), 'Q')
|
|
178
|
+
})
|
|
179
|
+
|
|
180
|
+
it('should return "R" when given "R"', function () {
|
|
181
|
+
assert.strictEqual(stringIdentity('R'), 'R')
|
|
182
|
+
})
|
|
183
|
+
|
|
184
|
+
it('should return "S" when given "S"', function () {
|
|
185
|
+
assert.strictEqual(stringIdentity('S'), 'S')
|
|
186
|
+
})
|
|
187
|
+
|
|
188
|
+
it('should return "T" when given "T"', function () {
|
|
189
|
+
assert.strictEqual(stringIdentity('T'), 'T')
|
|
190
|
+
})
|
|
191
|
+
|
|
192
|
+
it('should return "U" when given "U"', function () {
|
|
193
|
+
assert.strictEqual(stringIdentity('U'), 'U')
|
|
194
|
+
})
|
|
195
|
+
|
|
196
|
+
it('should return "V" when given "V"', function () {
|
|
197
|
+
assert.strictEqual(stringIdentity('V'), 'V')
|
|
198
|
+
})
|
|
199
|
+
|
|
200
|
+
it('should return "W" when given "W"', function () {
|
|
201
|
+
assert.strictEqual(stringIdentity('W'), 'W')
|
|
202
|
+
})
|
|
203
|
+
|
|
204
|
+
it('should return "X" when given "X"', function () {
|
|
205
|
+
assert.strictEqual(stringIdentity('X'), 'X')
|
|
206
|
+
})
|
|
207
|
+
|
|
208
|
+
it('should return "Y" when given "Y"', function () {
|
|
209
|
+
assert.strictEqual(stringIdentity('Y'), 'Y')
|
|
210
|
+
})
|
|
211
|
+
|
|
212
|
+
it('should return "Z" when given "Z"', function () {
|
|
213
|
+
assert.strictEqual(stringIdentity('Z'), 'Z')
|
|
214
|
+
})
|
|
215
|
+
})
|
|
216
|
+
|
|
217
|
+
describe('Combined Alphabets', function () {
|
|
218
|
+
it('should return the full lowercase alphabet when given the combined lowercase string', function () {
|
|
219
|
+
assert.strictEqual(stringIdentity('abcdefghijklmnopqrstuvwxyz'), 'abcdefghijklmnopqrstuvwxyz')
|
|
220
|
+
})
|
|
221
|
+
|
|
222
|
+
it('should return the full uppercase alphabet when given the combined uppercase string', function () {
|
|
223
|
+
assert.strictEqual(stringIdentity('ABCDEFGHIJKLMNOPQRSTUVWXYZ'), 'ABCDEFGHIJKLMNOPQRSTUVWXYZ')
|
|
224
|
+
})
|
|
225
|
+
})
|
|
226
|
+
|
|
227
|
+
describe('FizzBuzz/CreashaksOrganzine Strings', function () {
|
|
228
|
+
it('should return "fizz" when given "fizz"', function () {
|
|
229
|
+
assert.strictEqual(stringIdentity('fizz'), 'fizz')
|
|
230
|
+
})
|
|
231
|
+
|
|
232
|
+
it('should return "buzz" when given "buzz"', function () {
|
|
233
|
+
assert.strictEqual(stringIdentity('buzz'), 'buzz')
|
|
234
|
+
})
|
|
235
|
+
|
|
236
|
+
it('should return "fizzbuzz" when given "fizzbuzz"', function () {
|
|
237
|
+
assert.strictEqual(stringIdentity('fizzbuzz'), 'fizzbuzz')
|
|
238
|
+
})
|
|
239
|
+
|
|
240
|
+
it('should return "creashaks" when given "creashaks"', function () {
|
|
241
|
+
assert.strictEqual(stringIdentity('creashaks'), 'creashaks')
|
|
242
|
+
})
|
|
243
|
+
|
|
244
|
+
it('should return "organzine" when given "organzine"', function () {
|
|
245
|
+
assert.strictEqual(stringIdentity('organzine'), 'organzine')
|
|
246
|
+
})
|
|
247
|
+
|
|
248
|
+
it('should return "creashaks organzine" when given "creashaks organzine"', function () {
|
|
249
|
+
assert.strictEqual(stringIdentity('creashaks organzine'), 'creashaks organzine')
|
|
250
|
+
})
|
|
251
|
+
})
|
|
252
|
+
|
|
253
|
+
describe('Emojis', function () {
|
|
254
|
+
it('should return "๐ฏ" when given "๐ฏ"', function () {
|
|
255
|
+
assert.strictEqual(stringIdentity('๐ฏ'), '๐ฏ')
|
|
256
|
+
})
|
|
257
|
+
|
|
258
|
+
it('should return "๐ข" when given "๐ข"', function () {
|
|
259
|
+
assert.strictEqual(stringIdentity('๐ข'), '๐ข')
|
|
260
|
+
})
|
|
261
|
+
|
|
262
|
+
it('should return "๐ก" when given "๐ก"', function () {
|
|
263
|
+
assert.strictEqual(stringIdentity('๐ก'), '๐ก')
|
|
264
|
+
})
|
|
265
|
+
|
|
266
|
+
it('should return "๐ซ" when given "๐ซ"', function () {
|
|
267
|
+
assert.strictEqual(stringIdentity('๐ซ'), '๐ซ')
|
|
268
|
+
})
|
|
269
|
+
|
|
270
|
+
it('should return "โ" when given "โ"', function () {
|
|
271
|
+
assert.strictEqual(stringIdentity('โ'), 'โ')
|
|
272
|
+
})
|
|
273
|
+
|
|
274
|
+
it('should return "๐" when given "๐"', function () {
|
|
275
|
+
assert.strictEqual(stringIdentity('๐'), '๐')
|
|
276
|
+
})
|
|
277
|
+
|
|
278
|
+
it('should return "๐" when given "๐"', function () {
|
|
279
|
+
assert.strictEqual(stringIdentity('๐'), '๐')
|
|
280
|
+
})
|
|
281
|
+
|
|
282
|
+
it('should return "๐" when given "๐"', function () {
|
|
283
|
+
assert.strictEqual(stringIdentity('๐'), '๐')
|
|
284
|
+
})
|
|
285
|
+
|
|
286
|
+
it('should return "๐" when given "๐"', function () {
|
|
287
|
+
assert.strictEqual(stringIdentity('๐'), '๐')
|
|
288
|
+
})
|
|
289
|
+
|
|
290
|
+
it('should return "๐" when given "๐"', function () {
|
|
291
|
+
assert.strictEqual(stringIdentity('๐'), '๐')
|
|
292
|
+
})
|
|
293
|
+
|
|
294
|
+
it('should return "๐" when given "๐"', function () {
|
|
295
|
+
assert.strictEqual(stringIdentity('๐'), '๐')
|
|
296
|
+
})
|
|
297
|
+
|
|
298
|
+
it('should return "๐" when given "๐"', function () {
|
|
299
|
+
assert.strictEqual(stringIdentity('๐'), '๐')
|
|
300
|
+
})
|
|
301
|
+
|
|
302
|
+
it('should return "๐" when given "๐"', function () {
|
|
303
|
+
assert.strictEqual(stringIdentity('๐'), '๐')
|
|
304
|
+
})
|
|
305
|
+
|
|
306
|
+
it('should return "๐" when given "๐"', function () {
|
|
307
|
+
assert.strictEqual(stringIdentity('๐'), '๐')
|
|
308
|
+
})
|
|
309
|
+
|
|
310
|
+
it('should return "๐ก" when given "๐ก"', function () {
|
|
311
|
+
assert.strictEqual(stringIdentity('๐ก'), '๐ก')
|
|
312
|
+
})
|
|
313
|
+
|
|
314
|
+
it('should return "๐" when given "๐"', function () {
|
|
315
|
+
assert.strictEqual(stringIdentity('๐'), '๐')
|
|
316
|
+
})
|
|
317
|
+
|
|
318
|
+
it('should return "๐ฏ" when given "๐ฏ"', function () {
|
|
319
|
+
assert.strictEqual(stringIdentity('๐ฏ'), '๐ฏ')
|
|
320
|
+
})
|
|
321
|
+
|
|
322
|
+
it('should return "๐" when given "๐"', function () {
|
|
323
|
+
assert.strictEqual(stringIdentity('๐'), '๐')
|
|
324
|
+
})
|
|
325
|
+
|
|
326
|
+
it('should return "๐" when given "๐"', function () {
|
|
327
|
+
assert.strictEqual(stringIdentity('๐'), '๐')
|
|
328
|
+
})
|
|
329
|
+
|
|
330
|
+
it('should return "๐ฑ" when given "๐ฑ"', function () {
|
|
331
|
+
assert.strictEqual(stringIdentity('๐ฑ'), '๐ฑ')
|
|
332
|
+
})
|
|
333
|
+
|
|
334
|
+
it('should return "๐ฟ" when given "๐ฟ"', function () {
|
|
335
|
+
assert.strictEqual(stringIdentity('๐ฟ'), '๐ฟ')
|
|
336
|
+
})
|
|
337
|
+
|
|
338
|
+
it('should return "๐พ" when given "๐พ"', function () {
|
|
339
|
+
assert.strictEqual(stringIdentity('๐พ'), '๐พ')
|
|
340
|
+
})
|
|
341
|
+
|
|
342
|
+
it('should return "๐" when given "๐"', function () {
|
|
343
|
+
assert.strictEqual(stringIdentity('๐'), '๐')
|
|
344
|
+
})
|
|
345
|
+
|
|
346
|
+
it('should return "๐ธ" when given "๐ธ"', function () {
|
|
347
|
+
assert.strictEqual(stringIdentity('๐ธ'), '๐ธ')
|
|
348
|
+
})
|
|
349
|
+
|
|
350
|
+
it('should return "๐" when given "๐"', function () {
|
|
351
|
+
assert.strictEqual(stringIdentity('๐'), '๐')
|
|
352
|
+
})
|
|
353
|
+
|
|
354
|
+
it('should return "๐" when given "๐"', function () {
|
|
355
|
+
assert.strictEqual(stringIdentity('๐'), '๐')
|
|
356
|
+
})
|
|
357
|
+
|
|
358
|
+
it('should return "๐ฌ" when given "๐ฌ"', function () {
|
|
359
|
+
assert.strictEqual(stringIdentity('๐ฌ'), '๐ฌ')
|
|
360
|
+
})
|
|
361
|
+
|
|
362
|
+
it('should return "๐" when given "๐"', function () {
|
|
363
|
+
assert.strictEqual(stringIdentity('๐'), '๐')
|
|
364
|
+
})
|
|
365
|
+
|
|
366
|
+
it('should return "๐" when given "๐"', function () {
|
|
367
|
+
assert.strictEqual(stringIdentity('๐'), '๐')
|
|
368
|
+
})
|
|
369
|
+
|
|
370
|
+
it('should return "๐" when given "๐"', function () {
|
|
371
|
+
assert.strictEqual(stringIdentity('๐'), '๐')
|
|
372
|
+
})
|
|
373
|
+
|
|
374
|
+
it('should return "๐" when given "๐"', function () {
|
|
375
|
+
assert.strictEqual(stringIdentity('๐'), '๐')
|
|
376
|
+
})
|
|
377
|
+
|
|
378
|
+
it('should return "๐" when given "๐"', function () {
|
|
379
|
+
assert.strictEqual(stringIdentity('๐'), '๐')
|
|
380
|
+
})
|
|
381
|
+
|
|
382
|
+
it('should return "๐ " when given "๐ "', function () {
|
|
383
|
+
assert.strictEqual(stringIdentity('๐ '), '๐ ')
|
|
384
|
+
})
|
|
385
|
+
|
|
386
|
+
it('should return "๐" when given "๐"', function () {
|
|
387
|
+
assert.strictEqual(stringIdentity('๐'), '๐')
|
|
388
|
+
})
|
|
389
|
+
|
|
390
|
+
it('should return "๐ก" when given "๐ก"', function () {
|
|
391
|
+
assert.strictEqual(stringIdentity('๐ก'), '๐ก')
|
|
392
|
+
})
|
|
393
|
+
|
|
394
|
+
it('should return "๐ฃ" when given "๐ฃ"', function () {
|
|
395
|
+
assert.strictEqual(stringIdentity('๐ฃ'), '๐ฃ')
|
|
396
|
+
})
|
|
397
|
+
|
|
398
|
+
it('should return "๐" when given "๐"', function () {
|
|
399
|
+
assert.strictEqual(stringIdentity('๐'), '๐')
|
|
400
|
+
})
|
|
401
|
+
|
|
402
|
+
it('should return "๐ธ" when given "๐ธ"', function () {
|
|
403
|
+
assert.strictEqual(stringIdentity('๐ธ'), '๐ธ')
|
|
404
|
+
})
|
|
405
|
+
|
|
406
|
+
it('should return "โ๏ธ" when given "โ๏ธ"', function () {
|
|
407
|
+
assert.strictEqual(stringIdentity('โ๏ธ'), 'โ๏ธ')
|
|
408
|
+
})
|
|
409
|
+
|
|
410
|
+
it('should return "โ" when given "โ"', function () {
|
|
411
|
+
assert.strictEqual(stringIdentity('โ'), 'โ')
|
|
412
|
+
})
|
|
413
|
+
|
|
414
|
+
it('should return "๐" when given "๐"', function () {
|
|
415
|
+
assert.strictEqual(stringIdentity('๐'), '๐')
|
|
416
|
+
})
|
|
417
|
+
|
|
418
|
+
it('should return "๐ป" when given "๐ป"', function () {
|
|
419
|
+
assert.strictEqual(stringIdentity('๐ป'), '๐ป')
|
|
420
|
+
})
|
|
421
|
+
|
|
422
|
+
it('should return "๐ง" when given "๐ง"', function () {
|
|
423
|
+
assert.strictEqual(stringIdentity('๐ง'), '๐ง')
|
|
424
|
+
})
|
|
425
|
+
|
|
426
|
+
it('should return "๐" when given "๐"', function () {
|
|
427
|
+
assert.strictEqual(stringIdentity('๐'), '๐')
|
|
428
|
+
})
|
|
429
|
+
|
|
430
|
+
it('should return "๐ฎ" when given "๐ฎ"', function () {
|
|
431
|
+
assert.strictEqual(stringIdentity('๐ฎ'), '๐ฎ')
|
|
432
|
+
})
|
|
433
|
+
|
|
434
|
+
it('should return "ยฉ๏ธ" when given "ยฉ๏ธ"', function () {
|
|
435
|
+
assert.strictEqual(stringIdentity('ยฉ๏ธ'), 'ยฉ๏ธ')
|
|
436
|
+
})
|
|
437
|
+
|
|
438
|
+
it('should return "๐ฆ" when given "๐ฆ"', function () {
|
|
439
|
+
assert.strictEqual(stringIdentity('๐ฆ'), '๐ฆ')
|
|
440
|
+
})
|
|
441
|
+
|
|
442
|
+
it('should return "๐" when given "๐"', function () {
|
|
443
|
+
assert.strictEqual(stringIdentity('๐'), '๐')
|
|
444
|
+
})
|
|
445
|
+
|
|
446
|
+
it('should return "๐" when given "๐"', function () {
|
|
447
|
+
assert.strictEqual(stringIdentity('๐'), '๐')
|
|
448
|
+
})
|
|
449
|
+
|
|
450
|
+
it('should return "๐ข" when given "๐ข"', function () {
|
|
451
|
+
assert.strictEqual(stringIdentity('๐ข'), '๐ข')
|
|
452
|
+
})
|
|
453
|
+
|
|
454
|
+
it('should return "๐ฎ" when given "๐ฎ"', function () {
|
|
455
|
+
assert.strictEqual(stringIdentity('๐ฎ'), '๐ฎ')
|
|
456
|
+
})
|
|
457
|
+
|
|
458
|
+
it('should return "๐ฑ" when given "๐ฑ"', function () {
|
|
459
|
+
assert.strictEqual(stringIdentity('๐ฑ'), '๐ฑ')
|
|
460
|
+
})
|
|
461
|
+
|
|
462
|
+
it('should return "๐ถ" when given "๐ถ"', function () {
|
|
463
|
+
assert.strictEqual(stringIdentity('๐ถ'), '๐ถ')
|
|
464
|
+
})
|
|
465
|
+
|
|
466
|
+
it('should return "๐ฏ" when given "๐ฏ"', function () {
|
|
467
|
+
assert.strictEqual(stringIdentity('๐ฏ'), '๐ฏ')
|
|
468
|
+
})
|
|
469
|
+
|
|
470
|
+
it('should return "๐ฉ๐ช" when given "๐ฉ๐ช"', function () {
|
|
471
|
+
assert.strictEqual(stringIdentity('๐ฉ๐ช'), '๐ฉ๐ช')
|
|
472
|
+
})
|
|
473
|
+
|
|
474
|
+
it('should return "๐ฌ" when given "๐ฌ"', function () {
|
|
475
|
+
assert.strictEqual(stringIdentity('๐ฌ'), '๐ฌ')
|
|
476
|
+
})
|
|
477
|
+
|
|
478
|
+
it('should return "๐ช" when given "๐ช"', function () {
|
|
479
|
+
assert.strictEqual(stringIdentity('๐ช'), '๐ช')
|
|
480
|
+
})
|
|
481
|
+
|
|
482
|
+
it('should return "๐ฉ" when given "๐ฉ"', function () {
|
|
483
|
+
assert.strictEqual(stringIdentity('๐ฉ'), '๐ฉ')
|
|
484
|
+
})
|
|
485
|
+
|
|
486
|
+
it('should return "๐ณ" when given "๐ณ"', function () {
|
|
487
|
+
assert.strictEqual(stringIdentity('๐ณ'), '๐ณ')
|
|
488
|
+
})
|
|
489
|
+
|
|
490
|
+
it('should return "โด๏ธ" when given "โด๏ธ"', function () {
|
|
491
|
+
assert.strictEqual(stringIdentity('โด๏ธ'), 'โด๏ธ')
|
|
492
|
+
})
|
|
493
|
+
|
|
494
|
+
it('should return "โณ๏ธ" when given "โณ๏ธ"', function () {
|
|
495
|
+
assert.strictEqual(stringIdentity('โณ๏ธ'), 'โณ๏ธ')
|
|
496
|
+
})
|
|
497
|
+
|
|
498
|
+
it('should return "๐ฉ" when given "๐ฉ"', function () {
|
|
499
|
+
assert.strictEqual(stringIdentity('๐ฉ'), '๐ฉ')
|
|
500
|
+
})
|
|
501
|
+
|
|
502
|
+
it('should return "๐ช๐ธ" when given "๐ช๐ธ"', function () {
|
|
503
|
+
assert.strictEqual(stringIdentity('๐ช๐ธ'), '๐ช๐ธ')
|
|
504
|
+
})
|
|
505
|
+
|
|
506
|
+
it('should return "๐ถ" when given "๐ถ"', function () {
|
|
507
|
+
assert.strictEqual(stringIdentity('๐ถ'), '๐ถ')
|
|
508
|
+
})
|
|
509
|
+
|
|
510
|
+
it('should return "๐" when given "๐"', function () {
|
|
511
|
+
assert.strictEqual(stringIdentity('๐'), '๐')
|
|
512
|
+
})
|
|
513
|
+
|
|
514
|
+
it('should return "๐" when given "๐"', function () {
|
|
515
|
+
assert.strictEqual(stringIdentity('๐'), '๐')
|
|
516
|
+
})
|
|
517
|
+
|
|
518
|
+
it('should return "๐จโ๐ฉโ๐ฆ" when given "๐จโ๐ฉโ๐ฆ"', function () {
|
|
519
|
+
assert.strictEqual(stringIdentity('๐จโ๐ฉโ๐ฆ'), '๐จโ๐ฉโ๐ฆ')
|
|
520
|
+
})
|
|
521
|
+
|
|
522
|
+
it('should return "๐ฝ" when given "๐ฝ"', function () {
|
|
523
|
+
assert.strictEqual(stringIdentity('๐ฝ'), '๐ฝ')
|
|
524
|
+
})
|
|
525
|
+
|
|
526
|
+
it('should return "๐ฅ" when given "๐ฅ"', function () {
|
|
527
|
+
assert.strictEqual(stringIdentity('๐ฅ'), '๐ฅ')
|
|
528
|
+
})
|
|
529
|
+
|
|
530
|
+
it('should return "๐" when given "๐"', function () {
|
|
531
|
+
assert.strictEqual(stringIdentity('๐'), '๐')
|
|
532
|
+
})
|
|
533
|
+
|
|
534
|
+
it('should return "๐" when given "๐"', function () {
|
|
535
|
+
assert.strictEqual(stringIdentity('๐'), '๐')
|
|
536
|
+
})
|
|
537
|
+
|
|
538
|
+
it('should return "๐" when given "๐"', function () {
|
|
539
|
+
assert.strictEqual(stringIdentity('๐'), '๐')
|
|
540
|
+
})
|
|
541
|
+
|
|
542
|
+
it('should return "๐ฆ๐ฌ" when given "๐ฆ๐ฌ"', function () {
|
|
543
|
+
assert.strictEqual(stringIdentity('๐ฆ๐ฌ'), '๐ฆ๐ฌ')
|
|
544
|
+
})
|
|
545
|
+
|
|
546
|
+
it('should return "๐ฆ๐ฒ" when given "๐ฆ๐ฒ"', function () {
|
|
547
|
+
assert.strictEqual(stringIdentity('๐ฆ๐ฒ'), '๐ฆ๐ฒ')
|
|
548
|
+
})
|
|
549
|
+
|
|
550
|
+
it('should return "๐ฆ๐ฝ" when given "๐ฆ๐ฝ"', function () {
|
|
551
|
+
assert.strictEqual(stringIdentity('๐ฆ๐ฝ'), '๐ฆ๐ฝ')
|
|
552
|
+
})
|
|
553
|
+
|
|
554
|
+
it('should return "๐ง๐ฟ" when given "๐ง๐ฟ"', function () {
|
|
555
|
+
assert.strictEqual(stringIdentity('๐ง๐ฟ'), '๐ง๐ฟ')
|
|
556
|
+
})
|
|
557
|
+
|
|
558
|
+
it('should return "๐จ๐ฒ" when given "๐จ๐ฒ"', function () {
|
|
559
|
+
assert.strictEqual(stringIdentity('๐จ๐ฒ'), '๐จ๐ฒ')
|
|
560
|
+
})
|
|
561
|
+
|
|
562
|
+
it('should return "๐จ๐ฝ" when given "๐จ๐ฝ"', function () {
|
|
563
|
+
assert.strictEqual(stringIdentity('๐จ๐ฝ'), '๐จ๐ฝ')
|
|
564
|
+
})
|
|
565
|
+
|
|
566
|
+
it('should return "๐ช๐ช" when given "๐ช๐ช"', function () {
|
|
567
|
+
assert.strictEqual(stringIdentity('๐ช๐ช'), '๐ช๐ช')
|
|
568
|
+
})
|
|
569
|
+
|
|
570
|
+
it('should return "๐ช๐ธ" when given "๐ช๐ธ"', function () {
|
|
571
|
+
assert.strictEqual(stringIdentity('๐ช๐ธ'), '๐ช๐ธ')
|
|
572
|
+
})
|
|
573
|
+
|
|
574
|
+
it('should return "๐ฌ๐ฆ" when given "๐ฌ๐ฆ"', function () {
|
|
575
|
+
assert.strictEqual(stringIdentity('๐ฌ๐ฆ'), '๐ฌ๐ฆ')
|
|
576
|
+
})
|
|
577
|
+
|
|
578
|
+
it('should return "๐ฌ๐บ" when given "๐ฌ๐บ"', function () {
|
|
579
|
+
assert.strictEqual(stringIdentity('๐ฌ๐บ'), '๐ฌ๐บ')
|
|
580
|
+
})
|
|
581
|
+
|
|
582
|
+
it('should return "๐ฏ๐ช" when given "๐ฏ๐ช"', function () {
|
|
583
|
+
assert.strictEqual(stringIdentity('๐ฏ๐ช'), '๐ฏ๐ช')
|
|
584
|
+
})
|
|
585
|
+
|
|
586
|
+
it('should return "๐ฐ๐ญ" when given "๐ฐ๐ญ"', function () {
|
|
587
|
+
assert.strictEqual(stringIdentity('๐ฐ๐ญ'), '๐ฐ๐ญ')
|
|
588
|
+
})
|
|
589
|
+
|
|
590
|
+
it('should return "๐ฐ๐ณ" when given "๐ฐ๐ณ"', function () {
|
|
591
|
+
assert.strictEqual(stringIdentity('๐ฐ๐ณ'), '๐ฐ๐ณ')
|
|
592
|
+
})
|
|
593
|
+
|
|
594
|
+
it('should return "๐ณ๐ฆ" when given "๐ณ๐ฆ"', function () {
|
|
595
|
+
assert.strictEqual(stringIdentity('๐ณ๐ฆ'), '๐ณ๐ฆ')
|
|
596
|
+
})
|
|
597
|
+
|
|
598
|
+
it('should return "๐ณ๐บ" when given "๐ณ๐บ"', function () {
|
|
599
|
+
assert.strictEqual(stringIdentity('๐ณ๐บ'), '๐ณ๐บ')
|
|
600
|
+
})
|
|
601
|
+
|
|
602
|
+
it('should return "๐ต๐ซ" when given "๐ต๐ซ"', function () {
|
|
603
|
+
assert.strictEqual(stringIdentity('๐ต๐ซ'), '๐ต๐ซ')
|
|
604
|
+
})
|
|
605
|
+
|
|
606
|
+
it('should return "๐ต๐ท" when given "๐ต๐ท"', function () {
|
|
607
|
+
assert.strictEqual(stringIdentity('๐ต๐ท'), '๐ต๐ท')
|
|
608
|
+
})
|
|
609
|
+
|
|
610
|
+
it('should return "๐ต๐น" when given "๐ต๐น"', function () {
|
|
611
|
+
assert.strictEqual(stringIdentity('๐ต๐น'), '๐ต๐น')
|
|
612
|
+
})
|
|
613
|
+
|
|
614
|
+
it('should return "๐ธ๐ญ" when given "๐ธ๐ญ"', function () {
|
|
615
|
+
assert.strictEqual(stringIdentity('๐ธ๐ญ'), '๐ธ๐ญ')
|
|
616
|
+
})
|
|
617
|
+
|
|
618
|
+
it('should return "๐ธ๐ด" when given "๐ธ๐ด"', function () {
|
|
619
|
+
assert.strictEqual(stringIdentity('๐ธ๐ด'), '๐ธ๐ด')
|
|
620
|
+
})
|
|
621
|
+
|
|
622
|
+
it('should return "๐ธ๐ธ" when given "๐ธ๐ธ"', function () {
|
|
623
|
+
assert.strictEqual(stringIdentity('๐ธ๐ธ'), '๐ธ๐ธ')
|
|
624
|
+
})
|
|
625
|
+
|
|
626
|
+
it('should return "๐ป๐บ" when given "๐ป๐บ"', function () {
|
|
627
|
+
assert.strictEqual(stringIdentity('๐ป๐บ'), '๐ป๐บ')
|
|
628
|
+
})
|
|
629
|
+
|
|
630
|
+
it('should return "๐ผ๐ซ" when given "๐ผ๐ซ"', function () {
|
|
631
|
+
assert.strictEqual(stringIdentity('๐ผ๐ซ'), '๐ผ๐ซ')
|
|
632
|
+
})
|
|
633
|
+
|
|
634
|
+
it('should return "๐ผ๐ธ" when given "๐ผ๐ธ"', function () {
|
|
635
|
+
assert.strictEqual(stringIdentity('๐ผ๐ธ'), '๐ผ๐ธ')
|
|
636
|
+
})
|
|
637
|
+
|
|
638
|
+
it('should return "โ" when given "โ"', function () {
|
|
639
|
+
assert.strictEqual(stringIdentity('โ'), 'โ')
|
|
640
|
+
})
|
|
641
|
+
|
|
642
|
+
it('should return "๐" when given "๐"', function () {
|
|
643
|
+
assert.strictEqual(stringIdentity('๐'), '๐')
|
|
644
|
+
})
|
|
645
|
+
|
|
646
|
+
it('should return "๐ฃ" when given "๐ฃ"', function () {
|
|
647
|
+
assert.strictEqual(stringIdentity('๐ฃ'), '๐ฃ')
|
|
648
|
+
})
|
|
649
|
+
|
|
650
|
+
it('should return "๐" when given "๐"', function () {
|
|
651
|
+
assert.strictEqual(stringIdentity('๐'), '๐')
|
|
652
|
+
})
|
|
653
|
+
|
|
654
|
+
it('should return "โฑ" when given "โฑ"', function () {
|
|
655
|
+
assert.strictEqual(stringIdentity('โฑ'), 'โฑ')
|
|
656
|
+
})
|
|
657
|
+
|
|
658
|
+
it('should return "๐" when given "๐"', function () {
|
|
659
|
+
assert.strictEqual(stringIdentity('๐'), '๐')
|
|
660
|
+
})
|
|
661
|
+
|
|
662
|
+
it('should return "โณ๏ธ" when given "โณ๏ธ"', function () {
|
|
663
|
+
assert.strictEqual(stringIdentity('โณ๏ธ'), 'โณ๏ธ')
|
|
664
|
+
})
|
|
665
|
+
|
|
666
|
+
it('should return "๐" when given "๐"', function () {
|
|
667
|
+
assert.strictEqual(stringIdentity('๐'), '๐')
|
|
668
|
+
})
|
|
669
|
+
|
|
670
|
+
it('should return "๐ซ" when given "๐ซ"', function () {
|
|
671
|
+
assert.strictEqual(stringIdentity('๐ซ'), '๐ซ')
|
|
672
|
+
})
|
|
673
|
+
|
|
674
|
+
it('should return "๐" when given "๐"', function () {
|
|
675
|
+
assert.strictEqual(stringIdentity('๐'), '๐')
|
|
676
|
+
})
|
|
677
|
+
|
|
678
|
+
it('should return "๐น" when given "๐น"', function () {
|
|
679
|
+
assert.strictEqual(stringIdentity('๐น'), '๐น')
|
|
680
|
+
})
|
|
681
|
+
|
|
682
|
+
it('should return "#๏ธโฃ" when given "#๏ธโฃ"', function () {
|
|
683
|
+
assert.strictEqual(stringIdentity('#๏ธโฃ'), '#๏ธโฃ')
|
|
684
|
+
})
|
|
685
|
+
|
|
686
|
+
it('should return "๐ง" when given "๐ง"', function () {
|
|
687
|
+
assert.strictEqual(stringIdentity('๐ง'), '๐ง')
|
|
688
|
+
})
|
|
689
|
+
|
|
690
|
+
it('should return "๐" when given "๐"', function () {
|
|
691
|
+
assert.strictEqual(stringIdentity('๐'), '๐')
|
|
692
|
+
})
|
|
693
|
+
|
|
694
|
+
it('should return "โฅ๏ธ" when given "โฅ๏ธ"', function () {
|
|
695
|
+
assert.strictEqual(stringIdentity('โฅ๏ธ'), 'โฅ๏ธ')
|
|
696
|
+
})
|
|
697
|
+
|
|
698
|
+
it('should return "โ๏ธ" when given "โ๏ธ"', function () {
|
|
699
|
+
assert.strictEqual(stringIdentity('โ๏ธ'), 'โ๏ธ')
|
|
700
|
+
})
|
|
701
|
+
|
|
702
|
+
it('should return "๐" when given "๐"', function () {
|
|
703
|
+
assert.strictEqual(stringIdentity('๐'), '๐')
|
|
704
|
+
})
|
|
705
|
+
|
|
706
|
+
it('should return "๐ฟ" when given "๐ฟ"', function () {
|
|
707
|
+
assert.strictEqual(stringIdentity('๐ฟ'), '๐ฟ')
|
|
708
|
+
})
|
|
709
|
+
|
|
710
|
+
it('should return "๐ช" when given "๐ช"', function () {
|
|
711
|
+
assert.strictEqual(stringIdentity('๐ช'), '๐ช')
|
|
712
|
+
})
|
|
713
|
+
|
|
714
|
+
it('should return "๐ญ" when given "๐ญ"', function () {
|
|
715
|
+
assert.strictEqual(stringIdentity('๐ญ'), '๐ญ')
|
|
716
|
+
})
|
|
717
|
+
|
|
718
|
+
it('should return "๐จ" when given "๐จ"', function () {
|
|
719
|
+
assert.strictEqual(stringIdentity('๐จ'), '๐จ')
|
|
720
|
+
})
|
|
721
|
+
|
|
722
|
+
it('should return "โจ๏ธ" when given "โจ๏ธ"', function () {
|
|
723
|
+
assert.strictEqual(stringIdentity('โจ๏ธ'), 'โจ๏ธ')
|
|
724
|
+
})
|
|
725
|
+
|
|
726
|
+
it('should return "๐ " when given "๐ "', function () {
|
|
727
|
+
assert.strictEqual(stringIdentity('๐ '), '๐ ')
|
|
728
|
+
})
|
|
729
|
+
|
|
730
|
+
it('should return "๐ฅ" when given "๐ฅ"', function () {
|
|
731
|
+
assert.strictEqual(stringIdentity('๐ฅ'), '๐ฅ')
|
|
732
|
+
})
|
|
733
|
+
|
|
734
|
+
it('should return "โน๏ธ" when given "โน๏ธ"', function () {
|
|
735
|
+
assert.strictEqual(stringIdentity('โน๏ธ'), 'โน๏ธ')
|
|
736
|
+
})
|
|
737
|
+
|
|
738
|
+
it('should return "๐" when given "๐"', function () {
|
|
739
|
+
assert.strictEqual(stringIdentity('๐'), '๐')
|
|
740
|
+
})
|
|
741
|
+
|
|
742
|
+
it('should return "๐ฎ" when given "๐ฎ"', function () {
|
|
743
|
+
assert.strictEqual(stringIdentity('๐ฎ'), '๐ฎ')
|
|
744
|
+
})
|
|
745
|
+
|
|
746
|
+
it('should return "๐พ" when given "๐พ"', function () {
|
|
747
|
+
assert.strictEqual(stringIdentity('๐พ'), '๐พ')
|
|
748
|
+
})
|
|
749
|
+
|
|
750
|
+
it('should return "๐ฏ" when given "๐ฏ"', function () {
|
|
751
|
+
assert.strictEqual(stringIdentity('๐ฏ'), '๐ฏ')
|
|
752
|
+
})
|
|
753
|
+
|
|
754
|
+
it('should return "๐" when given "๐"', function () {
|
|
755
|
+
assert.strictEqual(stringIdentity('๐'), '๐')
|
|
756
|
+
})
|
|
757
|
+
|
|
758
|
+
it('should return "โจ" when given "โจ"', function () {
|
|
759
|
+
assert.strictEqual(stringIdentity('โจ'), 'โจ')
|
|
760
|
+
})
|
|
761
|
+
|
|
762
|
+
it('should return "*โฃ" when given "*โฃ"', function () {
|
|
763
|
+
assert.strictEqual(stringIdentity('*โฃ'), '*โฃ')
|
|
764
|
+
})
|
|
765
|
+
|
|
766
|
+
it('should return "๐" when given "๐"', function () {
|
|
767
|
+
assert.strictEqual(stringIdentity('๐'), '๐')
|
|
768
|
+
})
|
|
769
|
+
|
|
770
|
+
it('should return "๐" when given "๐"', function () {
|
|
771
|
+
assert.strictEqual(stringIdentity('๐'), '๐')
|
|
772
|
+
})
|
|
773
|
+
|
|
774
|
+
it('should return "๐ฝ" when given "๐ฝ"', function () {
|
|
775
|
+
assert.strictEqual(stringIdentity('๐ฝ'), '๐ฝ')
|
|
776
|
+
})
|
|
777
|
+
|
|
778
|
+
it('should return "๐" when given "๐"', function () {
|
|
779
|
+
assert.strictEqual(stringIdentity('๐'), '๐')
|
|
780
|
+
})
|
|
781
|
+
|
|
782
|
+
it('should return "๐ฎ" when given "๐ฎ"', function () {
|
|
783
|
+
assert.strictEqual(stringIdentity('๐ฎ'), '๐ฎ')
|
|
784
|
+
})
|
|
785
|
+
|
|
786
|
+
it('should return "๐" when given "๐"', function () {
|
|
787
|
+
assert.strictEqual(stringIdentity('๐'), '๐')
|
|
788
|
+
})
|
|
789
|
+
|
|
790
|
+
it('should return "๐" when given "๐"', function () {
|
|
791
|
+
assert.strictEqual(stringIdentity('๐'), '๐')
|
|
792
|
+
})
|
|
793
|
+
|
|
794
|
+
it('should return "๐
" when given "๐
"', function () {
|
|
795
|
+
assert.strictEqual(stringIdentity('๐
'), '๐
')
|
|
796
|
+
})
|
|
797
|
+
|
|
798
|
+
it('should return "โ๏ธ" when given "โ๏ธ"', function () {
|
|
799
|
+
assert.strictEqual(stringIdentity('โ๏ธ'), 'โ๏ธ')
|
|
800
|
+
})
|
|
801
|
+
|
|
802
|
+
it('should return "๐ฉ" when given "๐ฉ"', function () {
|
|
803
|
+
assert.strictEqual(stringIdentity('๐ฉ'), '๐ฉ')
|
|
804
|
+
})
|
|
805
|
+
|
|
806
|
+
it('should return "๐ญ" when given "๐ญ"', function () {
|
|
807
|
+
assert.strictEqual(stringIdentity('๐ญ'), '๐ญ')
|
|
808
|
+
})
|
|
809
|
+
|
|
810
|
+
it('should return "๐" when given "๐"', function () {
|
|
811
|
+
assert.strictEqual(stringIdentity('๐'), '๐')
|
|
812
|
+
})
|
|
813
|
+
|
|
814
|
+
it('should return "๐" when given "๐"', function () {
|
|
815
|
+
assert.strictEqual(stringIdentity('๐'), '๐')
|
|
816
|
+
})
|
|
817
|
+
|
|
818
|
+
it('should return "๐" when given "๐"', function () {
|
|
819
|
+
assert.strictEqual(stringIdentity('๐'), '๐')
|
|
820
|
+
})
|
|
821
|
+
|
|
822
|
+
it('should return "๐๏ธ" when given "๐๏ธ"', function () {
|
|
823
|
+
assert.strictEqual(stringIdentity('๐๏ธ'), '๐๏ธ')
|
|
824
|
+
})
|
|
825
|
+
|
|
826
|
+
it('should return "๐ซ" when given "๐ซ"', function () {
|
|
827
|
+
assert.strictEqual(stringIdentity('๐ซ'), '๐ซ')
|
|
828
|
+
})
|
|
829
|
+
|
|
830
|
+
it('should return "๐จโโค๏ธโ๐โ๐จ" when given "๐จโโค๏ธโ๐โ๐จ"', function () {
|
|
831
|
+
assert.strictEqual(stringIdentity('๐จโโค๏ธโ๐โ๐จ'), '๐จโโค๏ธโ๐โ๐จ')
|
|
832
|
+
})
|
|
833
|
+
|
|
834
|
+
it('should return "๐จโ๐จโ๐ฆโ๐ฆ" when given "๐จโ๐จโ๐ฆโ๐ฆ"', function () {
|
|
835
|
+
assert.strictEqual(stringIdentity('๐จโ๐จโ๐ฆโ๐ฆ'), '๐จโ๐จโ๐ฆโ๐ฆ')
|
|
836
|
+
})
|
|
837
|
+
|
|
838
|
+
it('should return "๐ณ" when given "๐ณ"', function () {
|
|
839
|
+
assert.strictEqual(stringIdentity('๐ณ'), '๐ณ')
|
|
840
|
+
})
|
|
841
|
+
|
|
842
|
+
it('should return "๐จโ๐ฉโ๐ฆ" when given "๐จโ๐ฉโ๐ฆ"', function () {
|
|
843
|
+
assert.strictEqual(stringIdentity('๐จโ๐ฉโ๐ฆ'), '๐จโ๐ฉโ๐ฆ')
|
|
844
|
+
})
|
|
845
|
+
|
|
846
|
+
it('should return "๐จโ๐ฉโ๐ง" when given "๐จโ๐ฉโ๐ง"', function () {
|
|
847
|
+
assert.strictEqual(stringIdentity('๐จโ๐ฉโ๐ง'), '๐จโ๐ฉโ๐ง')
|
|
848
|
+
})
|
|
849
|
+
|
|
850
|
+
it('should return "๐จโ๐ฉโ๐งโ๐ฆ" when given "๐จโ๐ฉโ๐งโ๐ฆ"', function () {
|
|
851
|
+
assert.strictEqual(stringIdentity('๐จโ๐ฉโ๐งโ๐ฆ'), '๐จโ๐ฉโ๐งโ๐ฆ')
|
|
852
|
+
})
|
|
853
|
+
|
|
854
|
+
it('should return "๐ฐ" when given "๐ฐ"', function () {
|
|
855
|
+
assert.strictEqual(stringIdentity('๐ฐ'), '๐ฐ')
|
|
856
|
+
})
|
|
857
|
+
|
|
858
|
+
it('should return "๐ค" when given "๐ค"', function () {
|
|
859
|
+
assert.strictEqual(stringIdentity('๐ค'), '๐ค')
|
|
860
|
+
})
|
|
861
|
+
|
|
862
|
+
it('should return "๐" when given "๐"', function () {
|
|
863
|
+
assert.strictEqual(stringIdentity('๐'), '๐')
|
|
864
|
+
})
|
|
865
|
+
|
|
866
|
+
it('should return "๐" when given "๐"', function () {
|
|
867
|
+
assert.strictEqual(stringIdentity('๐'), '๐')
|
|
868
|
+
})
|
|
869
|
+
|
|
870
|
+
it('should return "๐ค" when given "๐ค"', function () {
|
|
871
|
+
assert.strictEqual(stringIdentity('๐ค'), '๐ค')
|
|
872
|
+
})
|
|
873
|
+
|
|
874
|
+
it('should return "๐ต" when given "๐ต"', function () {
|
|
875
|
+
assert.strictEqual(stringIdentity('๐ต'), '๐ต')
|
|
876
|
+
})
|
|
877
|
+
|
|
878
|
+
it('should return "๐ค" when given "๐ค"', function () {
|
|
879
|
+
assert.strictEqual(stringIdentity('๐ค'), '๐ค')
|
|
880
|
+
})
|
|
881
|
+
|
|
882
|
+
it('should return "๐ป" when given "๐ป"', function () {
|
|
883
|
+
assert.strictEqual(stringIdentity('๐ป'), '๐ป')
|
|
884
|
+
})
|
|
885
|
+
|
|
886
|
+
it('should return "โฐ" when given "โฐ"', function () {
|
|
887
|
+
assert.strictEqual(stringIdentity('โฐ'), 'โฐ')
|
|
888
|
+
})
|
|
889
|
+
|
|
890
|
+
it('should return "๐" when given "๐"', function () {
|
|
891
|
+
assert.strictEqual(stringIdentity('๐'), '๐')
|
|
892
|
+
})
|
|
893
|
+
|
|
894
|
+
it('should return "๐" when given "๐"', function () {
|
|
895
|
+
assert.strictEqual(stringIdentity('๐'), '๐')
|
|
896
|
+
})
|
|
897
|
+
|
|
898
|
+
it('should return "๐" when given "๐"', function () {
|
|
899
|
+
assert.strictEqual(stringIdentity('๐'), '๐')
|
|
900
|
+
})
|
|
901
|
+
|
|
902
|
+
it('should return "๐ฑ" when given "๐ฑ"', function () {
|
|
903
|
+
assert.strictEqual(stringIdentity('๐ฑ'), '๐ฑ')
|
|
904
|
+
})
|
|
905
|
+
|
|
906
|
+
it('should return "๐" when given "๐"', function () {
|
|
907
|
+
assert.strictEqual(stringIdentity('๐'), '๐')
|
|
908
|
+
})
|
|
909
|
+
|
|
910
|
+
it('should return "๐
พ๏ธ" when given "๐
พ๏ธ"', function () {
|
|
911
|
+
assert.strictEqual(stringIdentity('๐
พ๏ธ'), '๐
พ๏ธ')
|
|
912
|
+
})
|
|
913
|
+
|
|
914
|
+
it('should return "๐" when given "๐"', function () {
|
|
915
|
+
assert.strictEqual(stringIdentity('๐'), '๐')
|
|
916
|
+
})
|
|
917
|
+
|
|
918
|
+
it('should return "๐" when given "๐"', function () {
|
|
919
|
+
assert.strictEqual(stringIdentity('๐'), '๐')
|
|
920
|
+
})
|
|
921
|
+
|
|
922
|
+
it('should return "๐" when given "๐"', function () {
|
|
923
|
+
assert.strictEqual(stringIdentity('๐'), '๐')
|
|
924
|
+
})
|
|
925
|
+
|
|
926
|
+
it('should return "1๏ธโฃ" when given "1๏ธโฃ"', function () {
|
|
927
|
+
assert.strictEqual(stringIdentity('1๏ธโฃ'), '1๏ธโฃ')
|
|
928
|
+
})
|
|
929
|
+
|
|
930
|
+
it('should return "๐ค" when given "๐ค"', function () {
|
|
931
|
+
assert.strictEqual(stringIdentity('๐ค'), '๐ค')
|
|
932
|
+
})
|
|
933
|
+
|
|
934
|
+
it('should return "๐ฆ" when given "๐ฆ"', function () {
|
|
935
|
+
assert.strictEqual(stringIdentity('๐ฆ'), '๐ฆ')
|
|
936
|
+
})
|
|
937
|
+
|
|
938
|
+
it('should return "๐ด" when given "๐ด"', function () {
|
|
939
|
+
assert.strictEqual(stringIdentity('๐ด'), '๐ด')
|
|
940
|
+
})
|
|
941
|
+
|
|
942
|
+
it('should return "๐" when given "๐"', function () {
|
|
943
|
+
assert.strictEqual(stringIdentity('๐'), '๐')
|
|
944
|
+
})
|
|
945
|
+
|
|
946
|
+
it('should return "๐
ฟ๏ธ" when given "๐
ฟ๏ธ"', function () {
|
|
947
|
+
assert.strictEqual(stringIdentity('๐
ฟ๏ธ'), '๐
ฟ๏ธ')
|
|
948
|
+
})
|
|
949
|
+
|
|
950
|
+
it('should return "ใฝ๏ธ" when given "ใฝ๏ธ"', function () {
|
|
951
|
+
assert.strictEqual(stringIdentity('ใฝ๏ธ'), 'ใฝ๏ธ')
|
|
952
|
+
})
|
|
953
|
+
|
|
954
|
+
it('should return "๐" when given "๐"', function () {
|
|
955
|
+
assert.strictEqual(stringIdentity('๐'), '๐')
|
|
956
|
+
})
|
|
957
|
+
|
|
958
|
+
it('should return "โ๏ธ" when given "โ๏ธ"', function () {
|
|
959
|
+
assert.strictEqual(stringIdentity('โ๏ธ'), 'โ๏ธ')
|
|
960
|
+
})
|
|
961
|
+
|
|
962
|
+
it('should return "๐ท" when given "๐ท"', function () {
|
|
963
|
+
assert.strictEqual(stringIdentity('๐ท'), '๐ท')
|
|
964
|
+
})
|
|
965
|
+
|
|
966
|
+
it('should return "๐ฝ" when given "๐ฝ"', function () {
|
|
967
|
+
assert.strictEqual(stringIdentity('๐ฝ'), '๐ฝ')
|
|
968
|
+
})
|
|
969
|
+
|
|
970
|
+
it('should return "๐" when given "๐"', function () {
|
|
971
|
+
assert.strictEqual(stringIdentity('๐'), '๐')
|
|
972
|
+
})
|
|
973
|
+
|
|
974
|
+
it('should return "๐" when given "๐"', function () {
|
|
975
|
+
assert.strictEqual(stringIdentity('๐'), '๐')
|
|
976
|
+
})
|
|
977
|
+
|
|
978
|
+
it('should return "๐" when given "๐"', function () {
|
|
979
|
+
assert.strictEqual(stringIdentity('๐'), '๐')
|
|
980
|
+
})
|
|
981
|
+
|
|
982
|
+
it('should return "๐ฉ" when given "๐ฉ"', function () {
|
|
983
|
+
assert.strictEqual(stringIdentity('๐ฉ'), '๐ฉ')
|
|
984
|
+
})
|
|
985
|
+
|
|
986
|
+
it('should return "๐ฉ" when given "๐ฉ"', function () {
|
|
987
|
+
assert.strictEqual(stringIdentity('๐ฉ'), '๐ฉ')
|
|
988
|
+
})
|
|
989
|
+
|
|
990
|
+
it('should return "๐ฏ" when given "๐ฏ"', function () {
|
|
991
|
+
assert.strictEqual(stringIdentity('๐ฏ'), '๐ฏ')
|
|
992
|
+
})
|
|
993
|
+
|
|
994
|
+
it('should return "๐ฎ" when given "๐ฎ"', function () {
|
|
995
|
+
assert.strictEqual(stringIdentity('๐ฎ'), '๐ฎ')
|
|
996
|
+
})
|
|
997
|
+
|
|
998
|
+
it('should return "๐" when given "๐"', function () {
|
|
999
|
+
assert.strictEqual(stringIdentity('๐'), '๐')
|
|
1000
|
+
})
|
|
1001
|
+
|
|
1002
|
+
it('should return "๐" when given "๐"', function () {
|
|
1003
|
+
assert.strictEqual(stringIdentity('๐'), '๐')
|
|
1004
|
+
})
|
|
1005
|
+
|
|
1006
|
+
it('should return "โ" when given "โ"', function () {
|
|
1007
|
+
assert.strictEqual(stringIdentity('โ'), 'โ')
|
|
1008
|
+
})
|
|
1009
|
+
|
|
1010
|
+
it('should return "๐" when given "๐"', function () {
|
|
1011
|
+
assert.strictEqual(stringIdentity('๐'), '๐')
|
|
1012
|
+
})
|
|
1013
|
+
|
|
1014
|
+
it('should return "๐" when given "๐"', function () {
|
|
1015
|
+
assert.strictEqual(stringIdentity('๐'), '๐')
|
|
1016
|
+
})
|
|
1017
|
+
|
|
1018
|
+
it('should return "๐" when given "๐"', function () {
|
|
1019
|
+
assert.strictEqual(stringIdentity('๐'), '๐')
|
|
1020
|
+
})
|
|
1021
|
+
|
|
1022
|
+
it('should return "๐" when given "๐"', function () {
|
|
1023
|
+
assert.strictEqual(stringIdentity('๐'), '๐')
|
|
1024
|
+
})
|
|
1025
|
+
|
|
1026
|
+
it('should return "๐" when given "๐"', function () {
|
|
1027
|
+
assert.strictEqual(stringIdentity('๐'), '๐')
|
|
1028
|
+
})
|
|
1029
|
+
|
|
1030
|
+
it('should return "๐น" when given "๐น"', function () {
|
|
1031
|
+
assert.strictEqual(stringIdentity('๐น'), '๐น')
|
|
1032
|
+
})
|
|
1033
|
+
|
|
1034
|
+
it('should return "๐จ" when given "๐จ"', function () {
|
|
1035
|
+
assert.strictEqual(stringIdentity('๐จ'), '๐จ')
|
|
1036
|
+
})
|
|
1037
|
+
|
|
1038
|
+
it('should return "๐" when given "๐"', function () {
|
|
1039
|
+
assert.strictEqual(stringIdentity('๐'), '๐')
|
|
1040
|
+
})
|
|
1041
|
+
|
|
1042
|
+
it('should return "๐ฐ" when given "๐ฐ"', function () {
|
|
1043
|
+
assert.strictEqual(stringIdentity('๐ฐ'), '๐ฐ')
|
|
1044
|
+
})
|
|
1045
|
+
|
|
1046
|
+
it('should return "๐ท" when given "๐ท"', function () {
|
|
1047
|
+
assert.strictEqual(stringIdentity('๐ท'), '๐ท')
|
|
1048
|
+
})
|
|
1049
|
+
|
|
1050
|
+
it('should return "๐ฆ" when given "๐ฆ"', function () {
|
|
1051
|
+
assert.strictEqual(stringIdentity('๐ฆ'), '๐ฆ')
|
|
1052
|
+
})
|
|
1053
|
+
|
|
1054
|
+
it('should return "๐ฑ" when given "๐ฑ"', function () {
|
|
1055
|
+
assert.strictEqual(stringIdentity('๐ฑ'), '๐ฑ')
|
|
1056
|
+
})
|
|
1057
|
+
|
|
1058
|
+
it('should return "ใ๏ธ" when given "ใ๏ธ"', function () {
|
|
1059
|
+
assert.strictEqual(stringIdentity('ใ๏ธ'), 'ใ๏ธ')
|
|
1060
|
+
})
|
|
1061
|
+
|
|
1062
|
+
it('should return "๐ฟ" when given "๐ฟ"', function () {
|
|
1063
|
+
assert.strictEqual(stringIdentity('๐ฟ'), '๐ฟ')
|
|
1064
|
+
})
|
|
1065
|
+
|
|
1066
|
+
it('should return "๐ถ" when given "๐ถ"', function () {
|
|
1067
|
+
assert.strictEqual(stringIdentity('๐ถ'), '๐ถ')
|
|
1068
|
+
})
|
|
1069
|
+
|
|
1070
|
+
it('should return "6๏ธโฃ" when given "6๏ธโฃ"', function () {
|
|
1071
|
+
assert.strictEqual(stringIdentity('6๏ธโฃ'), '6๏ธโฃ')
|
|
1072
|
+
})
|
|
1073
|
+
|
|
1074
|
+
it('should return "๐ฟ" when given "๐ฟ"', function () {
|
|
1075
|
+
assert.strictEqual(stringIdentity('๐ฟ'), '๐ฟ')
|
|
1076
|
+
})
|
|
1077
|
+
|
|
1078
|
+
it('should return "๐บ" when given "๐บ"', function () {
|
|
1079
|
+
assert.strictEqual(stringIdentity('๐บ'), '๐บ')
|
|
1080
|
+
})
|
|
1081
|
+
|
|
1082
|
+
it('should return "๐" when given "๐"', function () {
|
|
1083
|
+
assert.strictEqual(stringIdentity('๐'), '๐')
|
|
1084
|
+
})
|
|
1085
|
+
|
|
1086
|
+
it('should return "๐ธ" when given "๐ธ"', function () {
|
|
1087
|
+
assert.strictEqual(stringIdentity('๐ธ'), '๐ธ')
|
|
1088
|
+
})
|
|
1089
|
+
|
|
1090
|
+
it('should return "๐ผ" when given "๐ผ"', function () {
|
|
1091
|
+
assert.strictEqual(stringIdentity('๐ผ'), '๐ผ')
|
|
1092
|
+
})
|
|
1093
|
+
|
|
1094
|
+
it('should return "๐พ" when given "๐พ"', function () {
|
|
1095
|
+
assert.strictEqual(stringIdentity('๐พ'), '๐พ')
|
|
1096
|
+
})
|
|
1097
|
+
|
|
1098
|
+
it('should return "โ๏ธ" when given "โ๏ธ"', function () {
|
|
1099
|
+
assert.strictEqual(stringIdentity('โ๏ธ'), 'โ๏ธ')
|
|
1100
|
+
})
|
|
1101
|
+
|
|
1102
|
+
it('should return "๐" when given "๐"', function () {
|
|
1103
|
+
assert.strictEqual(stringIdentity('๐'), '๐')
|
|
1104
|
+
})
|
|
1105
|
+
|
|
1106
|
+
it('should return "โช" when given "โช"', function () {
|
|
1107
|
+
assert.strictEqual(stringIdentity('โช'), 'โช')
|
|
1108
|
+
})
|
|
1109
|
+
|
|
1110
|
+
it('should return "โก" when given "โก"', function () {
|
|
1111
|
+
assert.strictEqual(stringIdentity('โก'), 'โก')
|
|
1112
|
+
})
|
|
1113
|
+
|
|
1114
|
+
it('should return "๐" when given "๐"', function () {
|
|
1115
|
+
assert.strictEqual(stringIdentity('๐'), '๐')
|
|
1116
|
+
})
|
|
1117
|
+
|
|
1118
|
+
it('should return "๐" when given "๐"', function () {
|
|
1119
|
+
assert.strictEqual(stringIdentity('๐'), '๐')
|
|
1120
|
+
})
|
|
1121
|
+
|
|
1122
|
+
it('should return "๐ป" when given "๐ป"', function () {
|
|
1123
|
+
assert.strictEqual(stringIdentity('๐ป'), '๐ป')
|
|
1124
|
+
})
|
|
1125
|
+
|
|
1126
|
+
it('should return "๐" when given "๐"', function () {
|
|
1127
|
+
assert.strictEqual(stringIdentity('๐'), '๐')
|
|
1128
|
+
})
|
|
1129
|
+
|
|
1130
|
+
it('should return "๐ฃ" when given "๐ฃ"', function () {
|
|
1131
|
+
assert.strictEqual(stringIdentity('๐ฃ'), '๐ฃ')
|
|
1132
|
+
})
|
|
1133
|
+
|
|
1134
|
+
it('should return "๐" when given "๐"', function () {
|
|
1135
|
+
assert.strictEqual(stringIdentity('๐'), '๐')
|
|
1136
|
+
})
|
|
1137
|
+
|
|
1138
|
+
it('should return "๐
" when given "๐
"', function () {
|
|
1139
|
+
assert.strictEqual(stringIdentity('๐
'), '๐
')
|
|
1140
|
+
})
|
|
1141
|
+
|
|
1142
|
+
it('should return "๐" when given "๐"', function () {
|
|
1143
|
+
assert.strictEqual(stringIdentity('๐'), '๐')
|
|
1144
|
+
})
|
|
1145
|
+
|
|
1146
|
+
it('should return "๐" when given "๐"', function () {
|
|
1147
|
+
assert.strictEqual(stringIdentity('๐'), '๐')
|
|
1148
|
+
})
|
|
1149
|
+
|
|
1150
|
+
it('should return "๐ต" when given "๐ต"', function () {
|
|
1151
|
+
assert.strictEqual(stringIdentity('๐ต'), '๐ต')
|
|
1152
|
+
})
|
|
1153
|
+
|
|
1154
|
+
it('should return "๐ค" when given "๐ค"', function () {
|
|
1155
|
+
assert.strictEqual(stringIdentity('๐ค'), '๐ค')
|
|
1156
|
+
})
|
|
1157
|
+
|
|
1158
|
+
it('should return "๐ฑ" when given "๐ฑ"', function () {
|
|
1159
|
+
assert.strictEqual(stringIdentity('๐ฑ'), '๐ฑ')
|
|
1160
|
+
})
|
|
1161
|
+
|
|
1162
|
+
it('should return "โข๏ธ" when given "โข๏ธ"', function () {
|
|
1163
|
+
assert.strictEqual(stringIdentity('โข๏ธ'), 'โข๏ธ')
|
|
1164
|
+
})
|
|
1165
|
+
|
|
1166
|
+
it('should return "๐" when given "๐"', function () {
|
|
1167
|
+
assert.strictEqual(stringIdentity('๐'), '๐')
|
|
1168
|
+
})
|
|
1169
|
+
|
|
1170
|
+
it('should return "๐ฒ" when given "๐ฒ"', function () {
|
|
1171
|
+
assert.strictEqual(stringIdentity('๐ฒ'), '๐ฒ')
|
|
1172
|
+
})
|
|
1173
|
+
|
|
1174
|
+
it('should return "๐" when given "๐"', function () {
|
|
1175
|
+
assert.strictEqual(stringIdentity('๐'), '๐')
|
|
1176
|
+
})
|
|
1177
|
+
|
|
1178
|
+
it('should return "๐ท" when given "๐ท"', function () {
|
|
1179
|
+
assert.strictEqual(stringIdentity('๐ท'), '๐ท')
|
|
1180
|
+
})
|
|
1181
|
+
|
|
1182
|
+
it('should return "2๏ธโฃ" when given "2๏ธโฃ"', function () {
|
|
1183
|
+
assert.strictEqual(stringIdentity('2๏ธโฃ'), '2๏ธโฃ')
|
|
1184
|
+
})
|
|
1185
|
+
|
|
1186
|
+
it('should return "๐ฌ" when given "๐ฌ"', function () {
|
|
1187
|
+
assert.strictEqual(stringIdentity('๐ฌ'), '๐ฌ')
|
|
1188
|
+
})
|
|
1189
|
+
|
|
1190
|
+
it('should return "๐ถ" when given "๐ถ"', function () {
|
|
1191
|
+
assert.strictEqual(stringIdentity('๐ถ'), '๐ถ')
|
|
1192
|
+
})
|
|
1193
|
+
|
|
1194
|
+
it('should return "๐ธ" when given "๐ธ"', function () {
|
|
1195
|
+
assert.strictEqual(stringIdentity('๐ธ'), '๐ธ')
|
|
1196
|
+
})
|
|
1197
|
+
|
|
1198
|
+
it('should return "โฑ" when given "โฑ"', function () {
|
|
1199
|
+
assert.strictEqual(stringIdentity('โฑ'), 'โฑ')
|
|
1200
|
+
})
|
|
1201
|
+
|
|
1202
|
+
it('should return "๐บ๐ธ" when given "๐บ๐ธ"', function () {
|
|
1203
|
+
assert.strictEqual(stringIdentity('๐บ๐ธ'), '๐บ๐ธ')
|
|
1204
|
+
})
|
|
1205
|
+
|
|
1206
|
+
it('should return "๐ผ" when given "๐ผ"', function () {
|
|
1207
|
+
assert.strictEqual(stringIdentity('๐ผ'), '๐ผ')
|
|
1208
|
+
})
|
|
1209
|
+
|
|
1210
|
+
it('should return "๐" when given "๐"', function () {
|
|
1211
|
+
assert.strictEqual(stringIdentity('๐'), '๐')
|
|
1212
|
+
})
|
|
1213
|
+
|
|
1214
|
+
it('should return "๐" when given "๐"', function () {
|
|
1215
|
+
assert.strictEqual(stringIdentity('๐'), '๐')
|
|
1216
|
+
})
|
|
1217
|
+
|
|
1218
|
+
it('should return "๐" when given "๐"', function () {
|
|
1219
|
+
assert.strictEqual(stringIdentity('๐'), '๐')
|
|
1220
|
+
})
|
|
1221
|
+
|
|
1222
|
+
it('should return "๐ณ" when given "๐ณ"', function () {
|
|
1223
|
+
assert.strictEqual(stringIdentity('๐ณ'), '๐ณ')
|
|
1224
|
+
})
|
|
1225
|
+
|
|
1226
|
+
it('should return "๐ฎ" when given "๐ฎ"', function () {
|
|
1227
|
+
assert.strictEqual(stringIdentity('๐ฎ'), '๐ฎ')
|
|
1228
|
+
})
|
|
1229
|
+
|
|
1230
|
+
it('should return "โป๏ธ" when given "โป๏ธ"', function () {
|
|
1231
|
+
assert.strictEqual(stringIdentity('โป๏ธ'), 'โป๏ธ')
|
|
1232
|
+
})
|
|
1233
|
+
|
|
1234
|
+
it('should return "๐ณ" when given "๐ณ"', function () {
|
|
1235
|
+
assert.strictEqual(stringIdentity('๐ณ'), '๐ณ')
|
|
1236
|
+
})
|
|
1237
|
+
|
|
1238
|
+
it('should return "๐ฉโ๐ฉโ๐งโ๐ฆ" when given "๐ฉโ๐ฉโ๐งโ๐ฆ"', function () {
|
|
1239
|
+
assert.strictEqual(stringIdentity('๐ฉโ๐ฉโ๐งโ๐ฆ'), '๐ฉโ๐ฉโ๐งโ๐ฆ')
|
|
1240
|
+
})
|
|
1241
|
+
|
|
1242
|
+
it('should return "๐บ" when given "๐บ"', function () {
|
|
1243
|
+
assert.strictEqual(stringIdentity('๐บ'), '๐บ')
|
|
1244
|
+
})
|
|
1245
|
+
|
|
1246
|
+
it('should return "0๏ธโฃ" when given "0๏ธโฃ"', function () {
|
|
1247
|
+
assert.strictEqual(stringIdentity('0๏ธโฃ'), '0๏ธโฃ')
|
|
1248
|
+
})
|
|
1249
|
+
|
|
1250
|
+
it('should return "something random" when given "something random"', function () {
|
|
1251
|
+
assert.strictEqual(stringIdentity('something random'), 'something random')
|
|
1252
|
+
})
|
|
1253
|
+
|
|
1254
|
+
it('should return "" when given ""', function () {
|
|
1255
|
+
assert.strictEqual(stringIdentity(''), '')
|
|
1256
|
+
})
|
|
1257
|
+
})
|
|
1258
|
+
})
|