1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
|
// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html
exports[`location > 42 > buildingNumber 1`] = `"9751"`;
exports[`location > 42 > cardinalDirection > noArgs 1`] = `"East"`;
exports[`location > 42 > cardinalDirection > with abbreviated option 1`] = `"E"`;
exports[`location > 42 > city 1`] = `"Fort Moses"`;
exports[`location > 42 > continent 1`] = `"Asia"`;
exports[`location > 42 > country 1`] = `"Guinea"`;
exports[`location > 42 > countryCode > noArgs 1`] = `"GY"`;
exports[`location > 42 > countryCode > with string alpha-2 1`] = `"GY"`;
exports[`location > 42 > countryCode > with string alpha-3 1`] = `"GUY"`;
exports[`location > 42 > countryCode > with string numeric 1`] = `"328"`;
exports[`location > 42 > countryCode > with variant option alpha-2 1`] = `"GY"`;
exports[`location > 42 > countryCode > with variant option alpha-3 1`] = `"GUY"`;
exports[`location > 42 > countryCode > with variant option numeric 1`] = `"328"`;
exports[`location > 42 > county 1`] = `"Borders"`;
exports[`location > 42 > direction > noArgs 1`] = `"South"`;
exports[`location > 42 > direction > with abbreviated option 1`] = `"S"`;
exports[`location > 42 > language 1`] = `
{
"alpha2": "gu",
"alpha3": "guj",
"name": "Gujarati",
}
`;
exports[`location > 42 > latitude > noArgs 1`] = `-22.5828`;
exports[`location > 42 > latitude > with max and min option 1`] = `-2.5092`;
exports[`location > 42 > latitude > with max option 1`] = `-52.546`;
exports[`location > 42 > latitude > with max, min and precision option 1`] = `-2.5091976231`;
exports[`location > 42 > latitude > with min option 1`] = `27.454`;
exports[`location > 42 > latitude > with precision option 1`] = `-22.5827786075`;
exports[`location > 42 > longitude > noArgs 1`] = `-45.1656`;
exports[`location > 42 > longitude > with max and min option 1`] = `-2.5092`;
exports[`location > 42 > longitude > with max option 1`] = `-108.8374`;
exports[`location > 42 > longitude > with max, min and precision option 1`] = `-2.5091976231`;
exports[`location > 42 > longitude > with min option 1`] = `61.1626`;
exports[`location > 42 > longitude > with precision option 1`] = `-45.165557215`;
exports[`location > 42 > nearbyGPSCoordinate > near origin 1`] = `
[
0.09716177782431099,
-0.0966009319947716,
]
`;
exports[`location > 42 > nearbyGPSCoordinate > noArgs 1`] = `
[
-22.5828,
162.2572,
]
`;
exports[`location > 42 > nearbyGPSCoordinate > only isMetric 1`] = `
[
-22.5828,
162.2572,
]
`;
exports[`location > 42 > nearbyGPSCoordinate > only radius 1`] = `
[
-22.5828,
162.2572,
]
`;
exports[`location > 42 > nearbyGPSCoordinate > with origin and isMetric 1`] = `
[
37.06038001199696,
-13.060031481137685,
]
`;
exports[`location > 42 > nearbyGPSCoordinate > with origin and radius 1`] = `
[
37.14574901717946,
-13.144907711778615,
]
`;
exports[`location > 42 > nearbyGPSCoordinate > with origin, radius and isMetric 1`] = `
[
37.09056366755245,
-13.090040907920184,
]
`;
exports[`location > 42 > nearbyGPSCoordinate > with radius and isMetric 1`] = `
[
-22.5828,
162.2572,
]
`;
exports[`location > 42 > ordinalDirection > noArgs 1`] = `"Northwest"`;
exports[`location > 42 > ordinalDirection > with abbreviated option 1`] = `"NW"`;
exports[`location > 42 > secondaryAddress 1`] = `"Apt. 975"`;
exports[`location > 42 > state > noArgs 1`] = `"Maine"`;
exports[`location > 42 > state > with options 1`] = `"ME"`;
exports[`location > 42 > street 1`] = `"Wiegand Ridges"`;
exports[`location > 42 > streetAddress > noArgs 1`] = `"9751 Anderson Throughway"`;
exports[`location > 42 > streetAddress > with boolean 1`] = `"9751 Anderson Throughway"`;
exports[`location > 42 > streetAddress > with useFullAddress options 1`] = `"9751 Anderson Throughway Suite 709"`;
exports[`location > 42 > timeZone 1`] = `"America/North_Dakota/Center"`;
exports[`location > 42 > zipCode > noArgs 1`] = `"97511"`;
exports[`location > 42 > zipCode > with format option 1`] = `"397-511"`;
exports[`location > 42 > zipCode > with string 1`] = `"397"`;
exports[`location > 1211 > buildingNumber 1`] = `"929"`;
exports[`location > 1211 > cardinalDirection > noArgs 1`] = `"West"`;
exports[`location > 1211 > cardinalDirection > with abbreviated option 1`] = `"W"`;
exports[`location > 1211 > city 1`] = `"The Villages"`;
exports[`location > 1211 > continent 1`] = `"South America"`;
exports[`location > 1211 > country 1`] = `"Uganda"`;
exports[`location > 1211 > countryCode > noArgs 1`] = `"UM"`;
exports[`location > 1211 > countryCode > with string alpha-2 1`] = `"UM"`;
exports[`location > 1211 > countryCode > with string alpha-3 1`] = `"UMI"`;
exports[`location > 1211 > countryCode > with string numeric 1`] = `"581"`;
exports[`location > 1211 > countryCode > with variant option alpha-2 1`] = `"UM"`;
exports[`location > 1211 > countryCode > with variant option alpha-3 1`] = `"UMI"`;
exports[`location > 1211 > countryCode > with variant option numeric 1`] = `"581"`;
exports[`location > 1211 > county 1`] = `"Tyne and Wear"`;
exports[`location > 1211 > direction > noArgs 1`] = `"Southwest"`;
exports[`location > 1211 > direction > with abbreviated option 1`] = `"SW"`;
exports[`location > 1211 > language 1`] = `
{
"alpha2": "tl",
"alpha3": "tgl",
"name": "Tagalog",
}
`;
exports[`location > 1211 > latitude > noArgs 1`] = `77.1337`;
exports[`location > 1211 > latitude > with max and min option 1`] = `8.5704`;
exports[`location > 1211 > latitude > with max option 1`] = `2.8521`;
exports[`location > 1211 > latitude > with max, min and precision option 1`] = `8.5704030781`;
exports[`location > 1211 > latitude > with min option 1`] = `82.8521`;
exports[`location > 1211 > latitude > with precision option 1`] = `77.1336277025`;
exports[`location > 1211 > longitude > noArgs 1`] = `154.2673`;
exports[`location > 1211 > longitude > with max and min option 1`] = `8.5704`;
exports[`location > 1211 > longitude > with max option 1`] = `-3.5811`;
exports[`location > 1211 > longitude > with max, min and precision option 1`] = `8.5704030781`;
exports[`location > 1211 > longitude > with min option 1`] = `166.4189`;
exports[`location > 1211 > longitude > with precision option 1`] = `154.267255405`;
exports[`location > 1211 > nearbyGPSCoordinate > near origin 1`] = `
[
-0.0559064403336199,
0.11599406649133925,
]
`;
exports[`location > 1211 > nearbyGPSCoordinate > noArgs 1`] = `
[
77.1337,
141.6498,
]
`;
exports[`location > 1211 > nearbyGPSCoordinate > only isMetric 1`] = `
[
77.1337,
141.6498,
]
`;
exports[`location > 1211 > nearbyGPSCoordinate > only radius 1`] = `
[
77.1337,
141.6498,
]
`;
exports[`location > 1211 > nearbyGPSCoordinate > with origin and isMetric 1`] = `
[
36.96526016799632,
-12.927922179282291,
]
`;
exports[`location > 1211 > nearbyGPSCoordinate > with origin and radius 1`] = `
[
36.91613839546868,
-12.826004866809171,
]
`;
exports[`location > 1211 > nearbyGPSCoordinate > with origin, radius and isMetric 1`] = `
[
36.94789219602537,
-12.891887302377313,
]
`;
exports[`location > 1211 > nearbyGPSCoordinate > with radius and isMetric 1`] = `
[
77.1337,
141.6498,
]
`;
exports[`location > 1211 > ordinalDirection > noArgs 1`] = `"Southwest"`;
exports[`location > 1211 > ordinalDirection > with abbreviated option 1`] = `"SW"`;
exports[`location > 1211 > secondaryAddress 1`] = `"Suite 929"`;
exports[`location > 1211 > state > noArgs 1`] = `"Washington"`;
exports[`location > 1211 > state > with options 1`] = `"WA"`;
exports[`location > 1211 > street 1`] = `"W Chestnut Street"`;
exports[`location > 1211 > streetAddress > noArgs 1`] = `"929 S Broad Street"`;
exports[`location > 1211 > streetAddress > with boolean 1`] = `"929 S Broad Street"`;
exports[`location > 1211 > streetAddress > with useFullAddress options 1`] = `"929 S Broad Street Suite 468"`;
exports[`location > 1211 > timeZone 1`] = `"Pacific/Fiji"`;
exports[`location > 1211 > zipCode > noArgs 1`] = `"82966-7368"`;
exports[`location > 1211 > zipCode > with format option 1`] = `"982-966"`;
exports[`location > 1211 > zipCode > with string 1`] = `"982"`;
exports[`location > 1337 > buildingNumber 1`] = `"22435"`;
exports[`location > 1337 > cardinalDirection > noArgs 1`] = `"East"`;
exports[`location > 1337 > cardinalDirection > with abbreviated option 1`] = `"E"`;
exports[`location > 1337 > city 1`] = `"East Duane"`;
exports[`location > 1337 > continent 1`] = `"Antarctica"`;
exports[`location > 1337 > country 1`] = `"Egypt"`;
exports[`location > 1337 > countryCode > noArgs 1`] = `"EH"`;
exports[`location > 1337 > countryCode > with string alpha-2 1`] = `"EH"`;
exports[`location > 1337 > countryCode > with string alpha-3 1`] = `"ESH"`;
exports[`location > 1337 > countryCode > with string numeric 1`] = `"732"`;
exports[`location > 1337 > countryCode > with variant option alpha-2 1`] = `"EH"`;
exports[`location > 1337 > countryCode > with variant option alpha-3 1`] = `"ESH"`;
exports[`location > 1337 > countryCode > with variant option numeric 1`] = `"732"`;
exports[`location > 1337 > county 1`] = `"Morgan County"`;
exports[`location > 1337 > direction > noArgs 1`] = `"South"`;
exports[`location > 1337 > direction > with abbreviated option 1`] = `"S"`;
exports[`location > 1337 > language 1`] = `
{
"alpha2": "ru",
"alpha3": "rus",
"name": "Russian",
}
`;
exports[`location > 1337 > latitude > noArgs 1`] = `-42.8356`;
exports[`location > 1337 > latitude > with max and min option 1`] = `-4.7595`;
exports[`location > 1337 > latitude > with max option 1`] = `-63.7976`;
exports[`location > 1337 > latitude > with max, min and precision option 1`] = `-4.7595064997`;
exports[`location > 1337 > latitude > with min option 1`] = `16.2024`;
exports[`location > 1337 > latitude > with precision option 1`] = `-42.8355584972`;
exports[`location > 1337 > longitude > noArgs 1`] = `-85.6711`;
exports[`location > 1337 > longitude > with max and min option 1`] = `-4.7595`;
exports[`location > 1337 > longitude > with max option 1`] = `-130.2153`;
exports[`location > 1337 > longitude > with max, min and precision option 1`] = `-4.7595064997`;
exports[`location > 1337 > longitude > with min option 1`] = `39.7847`;
exports[`location > 1337 > longitude > with precision option 1`] = `-85.6711169944`;
exports[`location > 1337 > nearbyGPSCoordinate > near origin 1`] = `
[
0.022796893471297014,
-0.00172567387755862,
]
`;
exports[`location > 1337 > nearbyGPSCoordinate > noArgs 1`] = `
[
-42.8356,
-122.8738,
]
`;
exports[`location > 1337 > nearbyGPSCoordinate > only isMetric 1`] = `
[
-42.8356,
-122.8738,
]
`;
exports[`location > 1337 > nearbyGPSCoordinate > only radius 1`] = `
[
-42.8356,
-122.8738,
]
`;
exports[`location > 1337 > nearbyGPSCoordinate > with origin and isMetric 1`] = `
[
37.014162112434576,
-13.001072040254485,
]
`;
exports[`location > 1337 > nearbyGPSCoordinate > with origin and radius 1`] = `
[
37.034199804933436,
-13.002588848786104,
]
`;
exports[`location > 1337 > nearbyGPSCoordinate > with origin, radius and isMetric 1`] = `
[
37.02125209810485,
-13.001608736321373,
]
`;
exports[`location > 1337 > nearbyGPSCoordinate > with radius and isMetric 1`] = `
[
-42.8356,
-122.8738,
]
`;
exports[`location > 1337 > ordinalDirection > noArgs 1`] = `"Northwest"`;
exports[`location > 1337 > ordinalDirection > with abbreviated option 1`] = `"NW"`;
exports[`location > 1337 > secondaryAddress 1`] = `"Apt. 224"`;
exports[`location > 1337 > state > noArgs 1`] = `"Indiana"`;
exports[`location > 1337 > state > with options 1`] = `"IN"`;
exports[`location > 1337 > street 1`] = `"Carmella Forge"`;
exports[`location > 1337 > streetAddress > noArgs 1`] = `"22435 Westley Ridges"`;
exports[`location > 1337 > streetAddress > with boolean 1`] = `"22435 Westley Ridges"`;
exports[`location > 1337 > streetAddress > with useFullAddress options 1`] = `"22435 Westley Ridges Apt. 461"`;
exports[`location > 1337 > timeZone 1`] = `"America/Guadeloupe"`;
exports[`location > 1337 > zipCode > noArgs 1`] = `"12435"`;
exports[`location > 1337 > zipCode > with format option 1`] = `"212-435"`;
exports[`location > 1337 > zipCode > with string 1`] = `"212"`;
|