integer-values 1.0.1 → 2.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.
Files changed (5) hide show
  1. package/README.md +123 -1319
  2. package/index.d.ts +407 -404
  3. package/index.js +605 -1410
  4. package/package.json +235 -137
  5. package/test-suite.js +413 -409
package/index.js CHANGED
@@ -1,1410 +1,605 @@
1
- "use strict"
2
-
3
- const $Object = require("es-object-atoms")
4
- const trueValue = require("true-value")
5
- const falseValue = require("false-value")
6
- const constant = require("lodash.constant")
7
-
8
- const exportsMap = {}
9
-
10
- const val_1 = require("@positive-numbers/one")
11
- exportsMap.one = val_1
12
- exportsMap.getOne = constant(val_1)
13
- $Object.defineProperty(exportsMap, "readonlyOne", {
14
- value: val_1,
15
- writable: falseValue(),
16
- enumerable: trueValue(),
17
- configurable: falseValue()
18
- })
19
- $Object.defineProperty(exportsMap, "dynamicOne", {
20
- get: function() { return require("@positive-numbers/one") },
21
- enumerable: trueValue()
22
- })
23
-
24
- const val_2 = require("@positive-numbers/two")
25
- exportsMap.two = val_2
26
- exportsMap.getTwo = constant(val_2)
27
- $Object.defineProperty(exportsMap, "readonlyTwo", {
28
- value: val_2,
29
- writable: falseValue(),
30
- enumerable: trueValue(),
31
- configurable: falseValue()
32
- })
33
- $Object.defineProperty(exportsMap, "dynamicTwo", {
34
- get: function() { return require("@positive-numbers/two") },
35
- enumerable: trueValue()
36
- })
37
-
38
- const val_3 = require("@positive-numbers/three")
39
- exportsMap.three = val_3
40
- exportsMap.getThree = constant(val_3)
41
- $Object.defineProperty(exportsMap, "readonlyThree", {
42
- value: val_3,
43
- writable: falseValue(),
44
- enumerable: trueValue(),
45
- configurable: falseValue()
46
- })
47
- $Object.defineProperty(exportsMap, "dynamicThree", {
48
- get: function() { return require("@positive-numbers/three") },
49
- enumerable: trueValue()
50
- })
51
-
52
- const val_4 = require("@positive-numbers/four")
53
- exportsMap.four = val_4
54
- exportsMap.getFour = constant(val_4)
55
- $Object.defineProperty(exportsMap, "readonlyFour", {
56
- value: val_4,
57
- writable: falseValue(),
58
- enumerable: trueValue(),
59
- configurable: falseValue()
60
- })
61
- $Object.defineProperty(exportsMap, "dynamicFour", {
62
- get: function() { return require("@positive-numbers/four") },
63
- enumerable: trueValue()
64
- })
65
-
66
- const val_5 = require("@positive-numbers/five")
67
- exportsMap.five = val_5
68
- exportsMap.getFive = constant(val_5)
69
- $Object.defineProperty(exportsMap, "readonlyFive", {
70
- value: val_5,
71
- writable: falseValue(),
72
- enumerable: trueValue(),
73
- configurable: falseValue()
74
- })
75
- $Object.defineProperty(exportsMap, "dynamicFive", {
76
- get: function() { return require("@positive-numbers/five") },
77
- enumerable: trueValue()
78
- })
79
-
80
- const val_6 = require("@positive-numbers/six")
81
- exportsMap.six = val_6
82
- exportsMap.getSix = constant(val_6)
83
- $Object.defineProperty(exportsMap, "readonlySix", {
84
- value: val_6,
85
- writable: falseValue(),
86
- enumerable: trueValue(),
87
- configurable: falseValue()
88
- })
89
- $Object.defineProperty(exportsMap, "dynamicSix", {
90
- get: function() { return require("@positive-numbers/six") },
91
- enumerable: trueValue()
92
- })
93
-
94
- const val_7 = require("@positive-numbers/seven")
95
- exportsMap.seven = val_7
96
- exportsMap.getSeven = constant(val_7)
97
- $Object.defineProperty(exportsMap, "readonlySeven", {
98
- value: val_7,
99
- writable: falseValue(),
100
- enumerable: trueValue(),
101
- configurable: falseValue()
102
- })
103
- $Object.defineProperty(exportsMap, "dynamicSeven", {
104
- get: function() { return require("@positive-numbers/seven") },
105
- enumerable: trueValue()
106
- })
107
-
108
- const val_8 = require("@positive-numbers/eight")
109
- exportsMap.eight = val_8
110
- exportsMap.getEight = constant(val_8)
111
- $Object.defineProperty(exportsMap, "readonlyEight", {
112
- value: val_8,
113
- writable: falseValue(),
114
- enumerable: trueValue(),
115
- configurable: falseValue()
116
- })
117
- $Object.defineProperty(exportsMap, "dynamicEight", {
118
- get: function() { return require("@positive-numbers/eight") },
119
- enumerable: trueValue()
120
- })
121
-
122
- const val_9 = require("@positive-numbers/nine")
123
- exportsMap.nine = val_9
124
- exportsMap.getNine = constant(val_9)
125
- $Object.defineProperty(exportsMap, "readonlyNine", {
126
- value: val_9,
127
- writable: falseValue(),
128
- enumerable: trueValue(),
129
- configurable: falseValue()
130
- })
131
- $Object.defineProperty(exportsMap, "dynamicNine", {
132
- get: function() { return require("@positive-numbers/nine") },
133
- enumerable: trueValue()
134
- })
135
-
136
- const val_10 = require("@positive-numbers/ten")
137
- exportsMap.ten = val_10
138
- exportsMap.getTen = constant(val_10)
139
- $Object.defineProperty(exportsMap, "readonlyTen", {
140
- value: val_10,
141
- writable: falseValue(),
142
- enumerable: trueValue(),
143
- configurable: falseValue()
144
- })
145
- $Object.defineProperty(exportsMap, "dynamicTen", {
146
- get: function() { return require("@positive-numbers/ten") },
147
- enumerable: trueValue()
148
- })
149
-
150
- const val_11 = require("@positive-numbers/eleven")
151
- exportsMap.eleven = val_11
152
- exportsMap.getEleven = constant(val_11)
153
- $Object.defineProperty(exportsMap, "readonlyEleven", {
154
- value: val_11,
155
- writable: falseValue(),
156
- enumerable: trueValue(),
157
- configurable: falseValue()
158
- })
159
- $Object.defineProperty(exportsMap, "dynamicEleven", {
160
- get: function() { return require("@positive-numbers/eleven") },
161
- enumerable: trueValue()
162
- })
163
-
164
- const val_12 = require("@positive-numbers/twelve")
165
- exportsMap.twelve = val_12
166
- exportsMap.getTwelve = constant(val_12)
167
- $Object.defineProperty(exportsMap, "readonlyTwelve", {
168
- value: val_12,
169
- writable: falseValue(),
170
- enumerable: trueValue(),
171
- configurable: falseValue()
172
- })
173
- $Object.defineProperty(exportsMap, "dynamicTwelve", {
174
- get: function() { return require("@positive-numbers/twelve") },
175
- enumerable: trueValue()
176
- })
177
-
178
- const val_13 = require("@positive-numbers/thirteen")
179
- exportsMap.thirteen = val_13
180
- exportsMap.getThirteen = constant(val_13)
181
- $Object.defineProperty(exportsMap, "readonlyThirteen", {
182
- value: val_13,
183
- writable: falseValue(),
184
- enumerable: trueValue(),
185
- configurable: falseValue()
186
- })
187
- $Object.defineProperty(exportsMap, "dynamicThirteen", {
188
- get: function() { return require("@positive-numbers/thirteen") },
189
- enumerable: trueValue()
190
- })
191
-
192
- const val_14 = require("@positive-numbers/fourteen")
193
- exportsMap.fourteen = val_14
194
- exportsMap.getFourteen = constant(val_14)
195
- $Object.defineProperty(exportsMap, "readonlyFourteen", {
196
- value: val_14,
197
- writable: falseValue(),
198
- enumerable: trueValue(),
199
- configurable: falseValue()
200
- })
201
- $Object.defineProperty(exportsMap, "dynamicFourteen", {
202
- get: function() { return require("@positive-numbers/fourteen") },
203
- enumerable: trueValue()
204
- })
205
-
206
- const val_15 = require("@positive-numbers/fifteen")
207
- exportsMap.fifteen = val_15
208
- exportsMap.getFifteen = constant(val_15)
209
- $Object.defineProperty(exportsMap, "readonlyFifteen", {
210
- value: val_15,
211
- writable: falseValue(),
212
- enumerable: trueValue(),
213
- configurable: falseValue()
214
- })
215
- $Object.defineProperty(exportsMap, "dynamicFifteen", {
216
- get: function() { return require("@positive-numbers/fifteen") },
217
- enumerable: trueValue()
218
- })
219
-
220
- const val_16 = require("@positive-numbers/sixteen")
221
- exportsMap.sixteen = val_16
222
- exportsMap.getSixteen = constant(val_16)
223
- $Object.defineProperty(exportsMap, "readonlySixteen", {
224
- value: val_16,
225
- writable: falseValue(),
226
- enumerable: trueValue(),
227
- configurable: falseValue()
228
- })
229
- $Object.defineProperty(exportsMap, "dynamicSixteen", {
230
- get: function() { return require("@positive-numbers/sixteen") },
231
- enumerable: trueValue()
232
- })
233
-
234
- const val_17 = require("@positive-numbers/seventeen")
235
- exportsMap.seventeen = val_17
236
- exportsMap.getSeventeen = constant(val_17)
237
- $Object.defineProperty(exportsMap, "readonlySeventeen", {
238
- value: val_17,
239
- writable: falseValue(),
240
- enumerable: trueValue(),
241
- configurable: falseValue()
242
- })
243
- $Object.defineProperty(exportsMap, "dynamicSeventeen", {
244
- get: function() { return require("@positive-numbers/seventeen") },
245
- enumerable: trueValue()
246
- })
247
-
248
- const val_18 = require("@positive-numbers/eighteen")
249
- exportsMap.eighteen = val_18
250
- exportsMap.getEighteen = constant(val_18)
251
- $Object.defineProperty(exportsMap, "readonlyEighteen", {
252
- value: val_18,
253
- writable: falseValue(),
254
- enumerable: trueValue(),
255
- configurable: falseValue()
256
- })
257
- $Object.defineProperty(exportsMap, "dynamicEighteen", {
258
- get: function() { return require("@positive-numbers/eighteen") },
259
- enumerable: trueValue()
260
- })
261
-
262
- const val_19 = require("@positive-numbers/nineteen")
263
- exportsMap.nineteen = val_19
264
- exportsMap.getNineteen = constant(val_19)
265
- $Object.defineProperty(exportsMap, "readonlyNineteen", {
266
- value: val_19,
267
- writable: falseValue(),
268
- enumerable: trueValue(),
269
- configurable: falseValue()
270
- })
271
- $Object.defineProperty(exportsMap, "dynamicNineteen", {
272
- get: function() { return require("@positive-numbers/nineteen") },
273
- enumerable: trueValue()
274
- })
275
-
276
- const val_20 = require("@positive-numbers/twenty")
277
- exportsMap.twenty = val_20
278
- exportsMap.getTwenty = constant(val_20)
279
- $Object.defineProperty(exportsMap, "readonlyTwenty", {
280
- value: val_20,
281
- writable: falseValue(),
282
- enumerable: trueValue(),
283
- configurable: falseValue()
284
- })
285
- $Object.defineProperty(exportsMap, "dynamicTwenty", {
286
- get: function() { return require("@positive-numbers/twenty") },
287
- enumerable: trueValue()
288
- })
289
-
290
- const val_21 = require("@positive-numbers/twenty-one")
291
- exportsMap.twentyOne = val_21
292
- exportsMap.getTwentyOne = constant(val_21)
293
- $Object.defineProperty(exportsMap, "readonlyTwentyOne", {
294
- value: val_21,
295
- writable: falseValue(),
296
- enumerable: trueValue(),
297
- configurable: falseValue()
298
- })
299
- $Object.defineProperty(exportsMap, "dynamicTwentyOne", {
300
- get: function() { return require("@positive-numbers/twenty-one") },
301
- enumerable: trueValue()
302
- })
303
-
304
- const val_22 = require("@positive-numbers/twenty-two")
305
- exportsMap.twentyTwo = val_22
306
- exportsMap.getTwentyTwo = constant(val_22)
307
- $Object.defineProperty(exportsMap, "readonlyTwentyTwo", {
308
- value: val_22,
309
- writable: falseValue(),
310
- enumerable: trueValue(),
311
- configurable: falseValue()
312
- })
313
- $Object.defineProperty(exportsMap, "dynamicTwentyTwo", {
314
- get: function() { return require("@positive-numbers/twenty-two") },
315
- enumerable: trueValue()
316
- })
317
-
318
- const val_23 = require("@positive-numbers/twenty-three")
319
- exportsMap.twentyThree = val_23
320
- exportsMap.getTwentyThree = constant(val_23)
321
- $Object.defineProperty(exportsMap, "readonlyTwentyThree", {
322
- value: val_23,
323
- writable: falseValue(),
324
- enumerable: trueValue(),
325
- configurable: falseValue()
326
- })
327
- $Object.defineProperty(exportsMap, "dynamicTwentyThree", {
328
- get: function() { return require("@positive-numbers/twenty-three") },
329
- enumerable: trueValue()
330
- })
331
-
332
- const val_24 = require("@positive-numbers/twenty-four")
333
- exportsMap.twentyFour = val_24
334
- exportsMap.getTwentyFour = constant(val_24)
335
- $Object.defineProperty(exportsMap, "readonlyTwentyFour", {
336
- value: val_24,
337
- writable: falseValue(),
338
- enumerable: trueValue(),
339
- configurable: falseValue()
340
- })
341
- $Object.defineProperty(exportsMap, "dynamicTwentyFour", {
342
- get: function() { return require("@positive-numbers/twenty-four") },
343
- enumerable: trueValue()
344
- })
345
-
346
- const val_25 = require("@positive-numbers/twenty-five")
347
- exportsMap.twentyFive = val_25
348
- exportsMap.getTwentyFive = constant(val_25)
349
- $Object.defineProperty(exportsMap, "readonlyTwentyFive", {
350
- value: val_25,
351
- writable: falseValue(),
352
- enumerable: trueValue(),
353
- configurable: falseValue()
354
- })
355
- $Object.defineProperty(exportsMap, "dynamicTwentyFive", {
356
- get: function() { return require("@positive-numbers/twenty-five") },
357
- enumerable: trueValue()
358
- })
359
-
360
- const val_26 = require("@positive-numbers/twenty-six")
361
- exportsMap.twentySix = val_26
362
- exportsMap.getTwentySix = constant(val_26)
363
- $Object.defineProperty(exportsMap, "readonlyTwentySix", {
364
- value: val_26,
365
- writable: falseValue(),
366
- enumerable: trueValue(),
367
- configurable: falseValue()
368
- })
369
- $Object.defineProperty(exportsMap, "dynamicTwentySix", {
370
- get: function() { return require("@positive-numbers/twenty-six") },
371
- enumerable: trueValue()
372
- })
373
-
374
- const val_27 = require("@positive-numbers/twenty-seven")
375
- exportsMap.twentySeven = val_27
376
- exportsMap.getTwentySeven = constant(val_27)
377
- $Object.defineProperty(exportsMap, "readonlyTwentySeven", {
378
- value: val_27,
379
- writable: falseValue(),
380
- enumerable: trueValue(),
381
- configurable: falseValue()
382
- })
383
- $Object.defineProperty(exportsMap, "dynamicTwentySeven", {
384
- get: function() { return require("@positive-numbers/twenty-seven") },
385
- enumerable: trueValue()
386
- })
387
-
388
- const val_28 = require("@positive-numbers/twenty-eight")
389
- exportsMap.twentyEight = val_28
390
- exportsMap.getTwentyEight = constant(val_28)
391
- $Object.defineProperty(exportsMap, "readonlyTwentyEight", {
392
- value: val_28,
393
- writable: falseValue(),
394
- enumerable: trueValue(),
395
- configurable: falseValue()
396
- })
397
- $Object.defineProperty(exportsMap, "dynamicTwentyEight", {
398
- get: function() { return require("@positive-numbers/twenty-eight") },
399
- enumerable: trueValue()
400
- })
401
-
402
- const val_29 = require("@positive-numbers/twenty-nine")
403
- exportsMap.twentyNine = val_29
404
- exportsMap.getTwentyNine = constant(val_29)
405
- $Object.defineProperty(exportsMap, "readonlyTwentyNine", {
406
- value: val_29,
407
- writable: falseValue(),
408
- enumerable: trueValue(),
409
- configurable: falseValue()
410
- })
411
- $Object.defineProperty(exportsMap, "dynamicTwentyNine", {
412
- get: function() { return require("@positive-numbers/twenty-nine") },
413
- enumerable: trueValue()
414
- })
415
-
416
- const val_30 = require("@positive-numbers/thirty")
417
- exportsMap.thirty = val_30
418
- exportsMap.getThirty = constant(val_30)
419
- $Object.defineProperty(exportsMap, "readonlyThirty", {
420
- value: val_30,
421
- writable: falseValue(),
422
- enumerable: trueValue(),
423
- configurable: falseValue()
424
- })
425
- $Object.defineProperty(exportsMap, "dynamicThirty", {
426
- get: function() { return require("@positive-numbers/thirty") },
427
- enumerable: trueValue()
428
- })
429
-
430
- const val_31 = require("@positive-numbers/thirty-one")
431
- exportsMap.thirtyOne = val_31
432
- exportsMap.getThirtyOne = constant(val_31)
433
- $Object.defineProperty(exportsMap, "readonlyThirtyOne", {
434
- value: val_31,
435
- writable: falseValue(),
436
- enumerable: trueValue(),
437
- configurable: falseValue()
438
- })
439
- $Object.defineProperty(exportsMap, "dynamicThirtyOne", {
440
- get: function() { return require("@positive-numbers/thirty-one") },
441
- enumerable: trueValue()
442
- })
443
-
444
- const val_32 = require("@positive-numbers/thirty-two")
445
- exportsMap.thirtyTwo = val_32
446
- exportsMap.getThirtyTwo = constant(val_32)
447
- $Object.defineProperty(exportsMap, "readonlyThirtyTwo", {
448
- value: val_32,
449
- writable: falseValue(),
450
- enumerable: trueValue(),
451
- configurable: falseValue()
452
- })
453
- $Object.defineProperty(exportsMap, "dynamicThirtyTwo", {
454
- get: function() { return require("@positive-numbers/thirty-two") },
455
- enumerable: trueValue()
456
- })
457
-
458
- const val_33 = require("@positive-numbers/thirty-three")
459
- exportsMap.thirtyThree = val_33
460
- exportsMap.getThirtyThree = constant(val_33)
461
- $Object.defineProperty(exportsMap, "readonlyThirtyThree", {
462
- value: val_33,
463
- writable: falseValue(),
464
- enumerable: trueValue(),
465
- configurable: falseValue()
466
- })
467
- $Object.defineProperty(exportsMap, "dynamicThirtyThree", {
468
- get: function() { return require("@positive-numbers/thirty-three") },
469
- enumerable: trueValue()
470
- })
471
-
472
- const val_34 = require("@positive-numbers/thirty-four")
473
- exportsMap.thirtyFour = val_34
474
- exportsMap.getThirtyFour = constant(val_34)
475
- $Object.defineProperty(exportsMap, "readonlyThirtyFour", {
476
- value: val_34,
477
- writable: falseValue(),
478
- enumerable: trueValue(),
479
- configurable: falseValue()
480
- })
481
- $Object.defineProperty(exportsMap, "dynamicThirtyFour", {
482
- get: function() { return require("@positive-numbers/thirty-four") },
483
- enumerable: trueValue()
484
- })
485
-
486
- const val_35 = require("@positive-numbers/thirty-five")
487
- exportsMap.thirtyFive = val_35
488
- exportsMap.getThirtyFive = constant(val_35)
489
- $Object.defineProperty(exportsMap, "readonlyThirtyFive", {
490
- value: val_35,
491
- writable: falseValue(),
492
- enumerable: trueValue(),
493
- configurable: falseValue()
494
- })
495
- $Object.defineProperty(exportsMap, "dynamicThirtyFive", {
496
- get: function() { return require("@positive-numbers/thirty-five") },
497
- enumerable: trueValue()
498
- })
499
-
500
- const val_36 = require("@positive-numbers/thirty-six")
501
- exportsMap.thirtySix = val_36
502
- exportsMap.getThirtySix = constant(val_36)
503
- $Object.defineProperty(exportsMap, "readonlyThirtySix", {
504
- value: val_36,
505
- writable: falseValue(),
506
- enumerable: trueValue(),
507
- configurable: falseValue()
508
- })
509
- $Object.defineProperty(exportsMap, "dynamicThirtySix", {
510
- get: function() { return require("@positive-numbers/thirty-six") },
511
- enumerable: trueValue()
512
- })
513
-
514
- const val_37 = require("@positive-numbers/thirty-seven")
515
- exportsMap.thirtySeven = val_37
516
- exportsMap.getThirtySeven = constant(val_37)
517
- $Object.defineProperty(exportsMap, "readonlyThirtySeven", {
518
- value: val_37,
519
- writable: falseValue(),
520
- enumerable: trueValue(),
521
- configurable: falseValue()
522
- })
523
- $Object.defineProperty(exportsMap, "dynamicThirtySeven", {
524
- get: function() { return require("@positive-numbers/thirty-seven") },
525
- enumerable: trueValue()
526
- })
527
-
528
- const val_38 = require("@positive-numbers/thirty-eight")
529
- exportsMap.thirtyEight = val_38
530
- exportsMap.getThirtyEight = constant(val_38)
531
- $Object.defineProperty(exportsMap, "readonlyThirtyEight", {
532
- value: val_38,
533
- writable: falseValue(),
534
- enumerable: trueValue(),
535
- configurable: falseValue()
536
- })
537
- $Object.defineProperty(exportsMap, "dynamicThirtyEight", {
538
- get: function() { return require("@positive-numbers/thirty-eight") },
539
- enumerable: trueValue()
540
- })
541
-
542
- const val_39 = require("@positive-numbers/thirty-nine")
543
- exportsMap.thirtyNine = val_39
544
- exportsMap.getThirtyNine = constant(val_39)
545
- $Object.defineProperty(exportsMap, "readonlyThirtyNine", {
546
- value: val_39,
547
- writable: falseValue(),
548
- enumerable: trueValue(),
549
- configurable: falseValue()
550
- })
551
- $Object.defineProperty(exportsMap, "dynamicThirtyNine", {
552
- get: function() { return require("@positive-numbers/thirty-nine") },
553
- enumerable: trueValue()
554
- })
555
-
556
- const val_40 = require("@positive-numbers/forty")
557
- exportsMap.forty = val_40
558
- exportsMap.getForty = constant(val_40)
559
- $Object.defineProperty(exportsMap, "readonlyForty", {
560
- value: val_40,
561
- writable: falseValue(),
562
- enumerable: trueValue(),
563
- configurable: falseValue()
564
- })
565
- $Object.defineProperty(exportsMap, "dynamicForty", {
566
- get: function() { return require("@positive-numbers/forty") },
567
- enumerable: trueValue()
568
- })
569
-
570
- const val_41 = require("@positive-numbers/forty-one")
571
- exportsMap.fortyOne = val_41
572
- exportsMap.getFortyOne = constant(val_41)
573
- $Object.defineProperty(exportsMap, "readonlyFortyOne", {
574
- value: val_41,
575
- writable: falseValue(),
576
- enumerable: trueValue(),
577
- configurable: falseValue()
578
- })
579
- $Object.defineProperty(exportsMap, "dynamicFortyOne", {
580
- get: function() { return require("@positive-numbers/forty-one") },
581
- enumerable: trueValue()
582
- })
583
-
584
- const val_42 = require("@positive-numbers/forty-two")
585
- exportsMap.fortyTwo = val_42
586
- exportsMap.getFortyTwo = constant(val_42)
587
- $Object.defineProperty(exportsMap, "readonlyFortyTwo", {
588
- value: val_42,
589
- writable: falseValue(),
590
- enumerable: trueValue(),
591
- configurable: falseValue()
592
- })
593
- $Object.defineProperty(exportsMap, "dynamicFortyTwo", {
594
- get: function() { return require("@positive-numbers/forty-two") },
595
- enumerable: trueValue()
596
- })
597
-
598
- const val_43 = require("@positive-numbers/forty-three")
599
- exportsMap.fortyThree = val_43
600
- exportsMap.getFortyThree = constant(val_43)
601
- $Object.defineProperty(exportsMap, "readonlyFortyThree", {
602
- value: val_43,
603
- writable: falseValue(),
604
- enumerable: trueValue(),
605
- configurable: falseValue()
606
- })
607
- $Object.defineProperty(exportsMap, "dynamicFortyThree", {
608
- get: function() { return require("@positive-numbers/forty-three") },
609
- enumerable: trueValue()
610
- })
611
-
612
- const val_44 = require("@positive-numbers/forty-four")
613
- exportsMap.fortyFour = val_44
614
- exportsMap.getFortyFour = constant(val_44)
615
- $Object.defineProperty(exportsMap, "readonlyFortyFour", {
616
- value: val_44,
617
- writable: falseValue(),
618
- enumerable: trueValue(),
619
- configurable: falseValue()
620
- })
621
- $Object.defineProperty(exportsMap, "dynamicFortyFour", {
622
- get: function() { return require("@positive-numbers/forty-four") },
623
- enumerable: trueValue()
624
- })
625
-
626
- const val_45 = require("@positive-numbers/forty-five")
627
- exportsMap.fortyFive = val_45
628
- exportsMap.getFortyFive = constant(val_45)
629
- $Object.defineProperty(exportsMap, "readonlyFortyFive", {
630
- value: val_45,
631
- writable: falseValue(),
632
- enumerable: trueValue(),
633
- configurable: falseValue()
634
- })
635
- $Object.defineProperty(exportsMap, "dynamicFortyFive", {
636
- get: function() { return require("@positive-numbers/forty-five") },
637
- enumerable: trueValue()
638
- })
639
-
640
- const val_46 = require("@positive-numbers/forty-six")
641
- exportsMap.fortySix = val_46
642
- exportsMap.getFortySix = constant(val_46)
643
- $Object.defineProperty(exportsMap, "readonlyFortySix", {
644
- value: val_46,
645
- writable: falseValue(),
646
- enumerable: trueValue(),
647
- configurable: falseValue()
648
- })
649
- $Object.defineProperty(exportsMap, "dynamicFortySix", {
650
- get: function() { return require("@positive-numbers/forty-six") },
651
- enumerable: trueValue()
652
- })
653
-
654
- const val_47 = require("@positive-numbers/forty-seven")
655
- exportsMap.fortySeven = val_47
656
- exportsMap.getFortySeven = constant(val_47)
657
- $Object.defineProperty(exportsMap, "readonlyFortySeven", {
658
- value: val_47,
659
- writable: falseValue(),
660
- enumerable: trueValue(),
661
- configurable: falseValue()
662
- })
663
- $Object.defineProperty(exportsMap, "dynamicFortySeven", {
664
- get: function() { return require("@positive-numbers/forty-seven") },
665
- enumerable: trueValue()
666
- })
667
-
668
- const val_48 = require("@positive-numbers/forty-eight")
669
- exportsMap.fortyEight = val_48
670
- exportsMap.getFortyEight = constant(val_48)
671
- $Object.defineProperty(exportsMap, "readonlyFortyEight", {
672
- value: val_48,
673
- writable: falseValue(),
674
- enumerable: trueValue(),
675
- configurable: falseValue()
676
- })
677
- $Object.defineProperty(exportsMap, "dynamicFortyEight", {
678
- get: function() { return require("@positive-numbers/forty-eight") },
679
- enumerable: trueValue()
680
- })
681
-
682
- const val_49 = require("@positive-numbers/forty-nine")
683
- exportsMap.fortyNine = val_49
684
- exportsMap.getFortyNine = constant(val_49)
685
- $Object.defineProperty(exportsMap, "readonlyFortyNine", {
686
- value: val_49,
687
- writable: falseValue(),
688
- enumerable: trueValue(),
689
- configurable: falseValue()
690
- })
691
- $Object.defineProperty(exportsMap, "dynamicFortyNine", {
692
- get: function() { return require("@positive-numbers/forty-nine") },
693
- enumerable: trueValue()
694
- })
695
-
696
- const val_50 = require("@positive-numbers/fifty")
697
- exportsMap.fifty = val_50
698
- exportsMap.getFifty = constant(val_50)
699
- $Object.defineProperty(exportsMap, "readonlyFifty", {
700
- value: val_50,
701
- writable: falseValue(),
702
- enumerable: trueValue(),
703
- configurable: falseValue()
704
- })
705
- $Object.defineProperty(exportsMap, "dynamicFifty", {
706
- get: function() { return require("@positive-numbers/fifty") },
707
- enumerable: trueValue()
708
- })
709
-
710
- const val_51 = require("@positive-numbers/fifty-one")
711
- exportsMap.fiftyOne = val_51
712
- exportsMap.getFiftyOne = constant(val_51)
713
- $Object.defineProperty(exportsMap, "readonlyFiftyOne", {
714
- value: val_51,
715
- writable: falseValue(),
716
- enumerable: trueValue(),
717
- configurable: falseValue()
718
- })
719
- $Object.defineProperty(exportsMap, "dynamicFiftyOne", {
720
- get: function() { return require("@positive-numbers/fifty-one") },
721
- enumerable: trueValue()
722
- })
723
-
724
- const val_52 = require("@positive-numbers/fifty-two")
725
- exportsMap.fiftyTwo = val_52
726
- exportsMap.getFiftyTwo = constant(val_52)
727
- $Object.defineProperty(exportsMap, "readonlyFiftyTwo", {
728
- value: val_52,
729
- writable: falseValue(),
730
- enumerable: trueValue(),
731
- configurable: falseValue()
732
- })
733
- $Object.defineProperty(exportsMap, "dynamicFiftyTwo", {
734
- get: function() { return require("@positive-numbers/fifty-two") },
735
- enumerable: trueValue()
736
- })
737
-
738
- const val_53 = require("@positive-numbers/fifty-three")
739
- exportsMap.fiftyThree = val_53
740
- exportsMap.getFiftyThree = constant(val_53)
741
- $Object.defineProperty(exportsMap, "readonlyFiftyThree", {
742
- value: val_53,
743
- writable: falseValue(),
744
- enumerable: trueValue(),
745
- configurable: falseValue()
746
- })
747
- $Object.defineProperty(exportsMap, "dynamicFiftyThree", {
748
- get: function() { return require("@positive-numbers/fifty-three") },
749
- enumerable: trueValue()
750
- })
751
-
752
- const val_54 = require("@positive-numbers/fifty-four")
753
- exportsMap.fiftyFour = val_54
754
- exportsMap.getFiftyFour = constant(val_54)
755
- $Object.defineProperty(exportsMap, "readonlyFiftyFour", {
756
- value: val_54,
757
- writable: falseValue(),
758
- enumerable: trueValue(),
759
- configurable: falseValue()
760
- })
761
- $Object.defineProperty(exportsMap, "dynamicFiftyFour", {
762
- get: function() { return require("@positive-numbers/fifty-four") },
763
- enumerable: trueValue()
764
- })
765
-
766
- const val_55 = require("@positive-numbers/fifty-five")
767
- exportsMap.fiftyFive = val_55
768
- exportsMap.getFiftyFive = constant(val_55)
769
- $Object.defineProperty(exportsMap, "readonlyFiftyFive", {
770
- value: val_55,
771
- writable: falseValue(),
772
- enumerable: trueValue(),
773
- configurable: falseValue()
774
- })
775
- $Object.defineProperty(exportsMap, "dynamicFiftyFive", {
776
- get: function() { return require("@positive-numbers/fifty-five") },
777
- enumerable: trueValue()
778
- })
779
-
780
- const val_56 = require("@positive-numbers/fifty-six")
781
- exportsMap.fiftySix = val_56
782
- exportsMap.getFiftySix = constant(val_56)
783
- $Object.defineProperty(exportsMap, "readonlyFiftySix", {
784
- value: val_56,
785
- writable: falseValue(),
786
- enumerable: trueValue(),
787
- configurable: falseValue()
788
- })
789
- $Object.defineProperty(exportsMap, "dynamicFiftySix", {
790
- get: function() { return require("@positive-numbers/fifty-six") },
791
- enumerable: trueValue()
792
- })
793
-
794
- const val_57 = require("@positive-numbers/fifty-seven")
795
- exportsMap.fiftySeven = val_57
796
- exportsMap.getFiftySeven = constant(val_57)
797
- $Object.defineProperty(exportsMap, "readonlyFiftySeven", {
798
- value: val_57,
799
- writable: falseValue(),
800
- enumerable: trueValue(),
801
- configurable: falseValue()
802
- })
803
- $Object.defineProperty(exportsMap, "dynamicFiftySeven", {
804
- get: function() { return require("@positive-numbers/fifty-seven") },
805
- enumerable: trueValue()
806
- })
807
-
808
- const val_58 = require("@positive-numbers/fifty-eight")
809
- exportsMap.fiftyEight = val_58
810
- exportsMap.getFiftyEight = constant(val_58)
811
- $Object.defineProperty(exportsMap, "readonlyFiftyEight", {
812
- value: val_58,
813
- writable: falseValue(),
814
- enumerable: trueValue(),
815
- configurable: falseValue()
816
- })
817
- $Object.defineProperty(exportsMap, "dynamicFiftyEight", {
818
- get: function() { return require("@positive-numbers/fifty-eight") },
819
- enumerable: trueValue()
820
- })
821
-
822
- const val_59 = require("@positive-numbers/fifty-nine")
823
- exportsMap.fiftyNine = val_59
824
- exportsMap.getFiftyNine = constant(val_59)
825
- $Object.defineProperty(exportsMap, "readonlyFiftyNine", {
826
- value: val_59,
827
- writable: falseValue(),
828
- enumerable: trueValue(),
829
- configurable: falseValue()
830
- })
831
- $Object.defineProperty(exportsMap, "dynamicFiftyNine", {
832
- get: function() { return require("@positive-numbers/fifty-nine") },
833
- enumerable: trueValue()
834
- })
835
-
836
- const val_60 = require("@positive-numbers/sixty")
837
- exportsMap.sixty = val_60
838
- exportsMap.getSixty = constant(val_60)
839
- $Object.defineProperty(exportsMap, "readonlySixty", {
840
- value: val_60,
841
- writable: falseValue(),
842
- enumerable: trueValue(),
843
- configurable: falseValue()
844
- })
845
- $Object.defineProperty(exportsMap, "dynamicSixty", {
846
- get: function() { return require("@positive-numbers/sixty") },
847
- enumerable: trueValue()
848
- })
849
-
850
- const val_61 = require("@positive-numbers/sixty-one")
851
- exportsMap.sixtyOne = val_61
852
- exportsMap.getSixtyOne = constant(val_61)
853
- $Object.defineProperty(exportsMap, "readonlySixtyOne", {
854
- value: val_61,
855
- writable: falseValue(),
856
- enumerable: trueValue(),
857
- configurable: falseValue()
858
- })
859
- $Object.defineProperty(exportsMap, "dynamicSixtyOne", {
860
- get: function() { return require("@positive-numbers/sixty-one") },
861
- enumerable: trueValue()
862
- })
863
-
864
- const val_62 = require("@positive-numbers/sixty-two")
865
- exportsMap.sixtyTwo = val_62
866
- exportsMap.getSixtyTwo = constant(val_62)
867
- $Object.defineProperty(exportsMap, "readonlySixtyTwo", {
868
- value: val_62,
869
- writable: falseValue(),
870
- enumerable: trueValue(),
871
- configurable: falseValue()
872
- })
873
- $Object.defineProperty(exportsMap, "dynamicSixtyTwo", {
874
- get: function() { return require("@positive-numbers/sixty-two") },
875
- enumerable: trueValue()
876
- })
877
-
878
- const val_63 = require("@positive-numbers/sixty-three")
879
- exportsMap.sixtyThree = val_63
880
- exportsMap.getSixtyThree = constant(val_63)
881
- $Object.defineProperty(exportsMap, "readonlySixtyThree", {
882
- value: val_63,
883
- writable: falseValue(),
884
- enumerable: trueValue(),
885
- configurable: falseValue()
886
- })
887
- $Object.defineProperty(exportsMap, "dynamicSixtyThree", {
888
- get: function() { return require("@positive-numbers/sixty-three") },
889
- enumerable: trueValue()
890
- })
891
-
892
- const val_64 = require("@positive-numbers/sixty-four")
893
- exportsMap.sixtyFour = val_64
894
- exportsMap.getSixtyFour = constant(val_64)
895
- $Object.defineProperty(exportsMap, "readonlySixtyFour", {
896
- value: val_64,
897
- writable: falseValue(),
898
- enumerable: trueValue(),
899
- configurable: falseValue()
900
- })
901
- $Object.defineProperty(exportsMap, "dynamicSixtyFour", {
902
- get: function() { return require("@positive-numbers/sixty-four") },
903
- enumerable: trueValue()
904
- })
905
-
906
- const val_65 = require("@positive-numbers/sixty-five")
907
- exportsMap.sixtyFive = val_65
908
- exportsMap.getSixtyFive = constant(val_65)
909
- $Object.defineProperty(exportsMap, "readonlySixtyFive", {
910
- value: val_65,
911
- writable: falseValue(),
912
- enumerable: trueValue(),
913
- configurable: falseValue()
914
- })
915
- $Object.defineProperty(exportsMap, "dynamicSixtyFive", {
916
- get: function() { return require("@positive-numbers/sixty-five") },
917
- enumerable: trueValue()
918
- })
919
-
920
- const val_66 = require("@positive-numbers/sixty-six")
921
- exportsMap.sixtySix = val_66
922
- exportsMap.getSixtySix = constant(val_66)
923
- $Object.defineProperty(exportsMap, "readonlySixtySix", {
924
- value: val_66,
925
- writable: falseValue(),
926
- enumerable: trueValue(),
927
- configurable: falseValue()
928
- })
929
- $Object.defineProperty(exportsMap, "dynamicSixtySix", {
930
- get: function() { return require("@positive-numbers/sixty-six") },
931
- enumerable: trueValue()
932
- })
933
-
934
- const val_67 = require("@positive-numbers/sixty-seven")
935
- exportsMap.sixtySeven = val_67
936
- exportsMap.getSixtySeven = constant(val_67)
937
- $Object.defineProperty(exportsMap, "readonlySixtySeven", {
938
- value: val_67,
939
- writable: falseValue(),
940
- enumerable: trueValue(),
941
- configurable: falseValue()
942
- })
943
- $Object.defineProperty(exportsMap, "dynamicSixtySeven", {
944
- get: function() { return require("@positive-numbers/sixty-seven") },
945
- enumerable: trueValue()
946
- })
947
-
948
- const val_68 = require("@positive-numbers/sixty-eight")
949
- exportsMap.sixtyEight = val_68
950
- exportsMap.getSixtyEight = constant(val_68)
951
- $Object.defineProperty(exportsMap, "readonlySixtyEight", {
952
- value: val_68,
953
- writable: falseValue(),
954
- enumerable: trueValue(),
955
- configurable: falseValue()
956
- })
957
- $Object.defineProperty(exportsMap, "dynamicSixtyEight", {
958
- get: function() { return require("@positive-numbers/sixty-eight") },
959
- enumerable: trueValue()
960
- })
961
-
962
- const val_69 = require("@positive-numbers/sixty-nine")
963
- exportsMap.sixtyNine = val_69
964
- exportsMap.getSixtyNine = constant(val_69)
965
- $Object.defineProperty(exportsMap, "readonlySixtyNine", {
966
- value: val_69,
967
- writable: falseValue(),
968
- enumerable: trueValue(),
969
- configurable: falseValue()
970
- })
971
- $Object.defineProperty(exportsMap, "dynamicSixtyNine", {
972
- get: function() { return require("@positive-numbers/sixty-nine") },
973
- enumerable: trueValue()
974
- })
975
-
976
- const val_70 = require("@positive-numbers/seventy")
977
- exportsMap.seventy = val_70
978
- exportsMap.getSeventy = constant(val_70)
979
- $Object.defineProperty(exportsMap, "readonlySeventy", {
980
- value: val_70,
981
- writable: falseValue(),
982
- enumerable: trueValue(),
983
- configurable: falseValue()
984
- })
985
- $Object.defineProperty(exportsMap, "dynamicSeventy", {
986
- get: function() { return require("@positive-numbers/seventy") },
987
- enumerable: trueValue()
988
- })
989
-
990
- const val_71 = require("@positive-numbers/seventy-one")
991
- exportsMap.seventyOne = val_71
992
- exportsMap.getSeventyOne = constant(val_71)
993
- $Object.defineProperty(exportsMap, "readonlySeventyOne", {
994
- value: val_71,
995
- writable: falseValue(),
996
- enumerable: trueValue(),
997
- configurable: falseValue()
998
- })
999
- $Object.defineProperty(exportsMap, "dynamicSeventyOne", {
1000
- get: function() { return require("@positive-numbers/seventy-one") },
1001
- enumerable: trueValue()
1002
- })
1003
-
1004
- const val_72 = require("@positive-numbers/seventy-two")
1005
- exportsMap.seventyTwo = val_72
1006
- exportsMap.getSeventyTwo = constant(val_72)
1007
- $Object.defineProperty(exportsMap, "readonlySeventyTwo", {
1008
- value: val_72,
1009
- writable: falseValue(),
1010
- enumerable: trueValue(),
1011
- configurable: falseValue()
1012
- })
1013
- $Object.defineProperty(exportsMap, "dynamicSeventyTwo", {
1014
- get: function() { return require("@positive-numbers/seventy-two") },
1015
- enumerable: trueValue()
1016
- })
1017
-
1018
- const val_73 = require("@positive-numbers/seventy-three")
1019
- exportsMap.seventyThree = val_73
1020
- exportsMap.getSeventyThree = constant(val_73)
1021
- $Object.defineProperty(exportsMap, "readonlySeventyThree", {
1022
- value: val_73,
1023
- writable: falseValue(),
1024
- enumerable: trueValue(),
1025
- configurable: falseValue()
1026
- })
1027
- $Object.defineProperty(exportsMap, "dynamicSeventyThree", {
1028
- get: function() { return require("@positive-numbers/seventy-three") },
1029
- enumerable: trueValue()
1030
- })
1031
-
1032
- const val_74 = require("@positive-numbers/seventy-four")
1033
- exportsMap.seventyFour = val_74
1034
- exportsMap.getSeventyFour = constant(val_74)
1035
- $Object.defineProperty(exportsMap, "readonlySeventyFour", {
1036
- value: val_74,
1037
- writable: falseValue(),
1038
- enumerable: trueValue(),
1039
- configurable: falseValue()
1040
- })
1041
- $Object.defineProperty(exportsMap, "dynamicSeventyFour", {
1042
- get: function() { return require("@positive-numbers/seventy-four") },
1043
- enumerable: trueValue()
1044
- })
1045
-
1046
- const val_75 = require("@positive-numbers/seventy-five")
1047
- exportsMap.seventyFive = val_75
1048
- exportsMap.getSeventyFive = constant(val_75)
1049
- $Object.defineProperty(exportsMap, "readonlySeventyFive", {
1050
- value: val_75,
1051
- writable: falseValue(),
1052
- enumerable: trueValue(),
1053
- configurable: falseValue()
1054
- })
1055
- $Object.defineProperty(exportsMap, "dynamicSeventyFive", {
1056
- get: function() { return require("@positive-numbers/seventy-five") },
1057
- enumerable: trueValue()
1058
- })
1059
-
1060
- const val_76 = require("@positive-numbers/seventy-six")
1061
- exportsMap.seventySix = val_76
1062
- exportsMap.getSeventySix = constant(val_76)
1063
- $Object.defineProperty(exportsMap, "readonlySeventySix", {
1064
- value: val_76,
1065
- writable: falseValue(),
1066
- enumerable: trueValue(),
1067
- configurable: falseValue()
1068
- })
1069
- $Object.defineProperty(exportsMap, "dynamicSeventySix", {
1070
- get: function() { return require("@positive-numbers/seventy-six") },
1071
- enumerable: trueValue()
1072
- })
1073
-
1074
- const val_77 = require("@positive-numbers/seventy-seven")
1075
- exportsMap.seventySeven = val_77
1076
- exportsMap.getSeventySeven = constant(val_77)
1077
- $Object.defineProperty(exportsMap, "readonlySeventySeven", {
1078
- value: val_77,
1079
- writable: falseValue(),
1080
- enumerable: trueValue(),
1081
- configurable: falseValue()
1082
- })
1083
- $Object.defineProperty(exportsMap, "dynamicSeventySeven", {
1084
- get: function() { return require("@positive-numbers/seventy-seven") },
1085
- enumerable: trueValue()
1086
- })
1087
-
1088
- const val_78 = require("@positive-numbers/seventy-eight")
1089
- exportsMap.seventyEight = val_78
1090
- exportsMap.getSeventyEight = constant(val_78)
1091
- $Object.defineProperty(exportsMap, "readonlySeventyEight", {
1092
- value: val_78,
1093
- writable: falseValue(),
1094
- enumerable: trueValue(),
1095
- configurable: falseValue()
1096
- })
1097
- $Object.defineProperty(exportsMap, "dynamicSeventyEight", {
1098
- get: function() { return require("@positive-numbers/seventy-eight") },
1099
- enumerable: trueValue()
1100
- })
1101
-
1102
- const val_79 = require("@positive-numbers/seventy-nine")
1103
- exportsMap.seventyNine = val_79
1104
- exportsMap.getSeventyNine = constant(val_79)
1105
- $Object.defineProperty(exportsMap, "readonlySeventyNine", {
1106
- value: val_79,
1107
- writable: falseValue(),
1108
- enumerable: trueValue(),
1109
- configurable: falseValue()
1110
- })
1111
- $Object.defineProperty(exportsMap, "dynamicSeventyNine", {
1112
- get: function() { return require("@positive-numbers/seventy-nine") },
1113
- enumerable: trueValue()
1114
- })
1115
-
1116
- const val_80 = require("@positive-numbers/eighty")
1117
- exportsMap.eighty = val_80
1118
- exportsMap.getEighty = constant(val_80)
1119
- $Object.defineProperty(exportsMap, "readonlyEighty", {
1120
- value: val_80,
1121
- writable: falseValue(),
1122
- enumerable: trueValue(),
1123
- configurable: falseValue()
1124
- })
1125
- $Object.defineProperty(exportsMap, "dynamicEighty", {
1126
- get: function() { return require("@positive-numbers/eighty") },
1127
- enumerable: trueValue()
1128
- })
1129
-
1130
- const val_81 = require("@positive-numbers/eighty-one")
1131
- exportsMap.eightyOne = val_81
1132
- exportsMap.getEightyOne = constant(val_81)
1133
- $Object.defineProperty(exportsMap, "readonlyEightyOne", {
1134
- value: val_81,
1135
- writable: falseValue(),
1136
- enumerable: trueValue(),
1137
- configurable: falseValue()
1138
- })
1139
- $Object.defineProperty(exportsMap, "dynamicEightyOne", {
1140
- get: function() { return require("@positive-numbers/eighty-one") },
1141
- enumerable: trueValue()
1142
- })
1143
-
1144
- const val_82 = require("@positive-numbers/eighty-two")
1145
- exportsMap.eightyTwo = val_82
1146
- exportsMap.getEightyTwo = constant(val_82)
1147
- $Object.defineProperty(exportsMap, "readonlyEightyTwo", {
1148
- value: val_82,
1149
- writable: falseValue(),
1150
- enumerable: trueValue(),
1151
- configurable: falseValue()
1152
- })
1153
- $Object.defineProperty(exportsMap, "dynamicEightyTwo", {
1154
- get: function() { return require("@positive-numbers/eighty-two") },
1155
- enumerable: trueValue()
1156
- })
1157
-
1158
- const val_83 = require("@positive-numbers/eighty-three")
1159
- exportsMap.eightyThree = val_83
1160
- exportsMap.getEightyThree = constant(val_83)
1161
- $Object.defineProperty(exportsMap, "readonlyEightyThree", {
1162
- value: val_83,
1163
- writable: falseValue(),
1164
- enumerable: trueValue(),
1165
- configurable: falseValue()
1166
- })
1167
- $Object.defineProperty(exportsMap, "dynamicEightyThree", {
1168
- get: function() { return require("@positive-numbers/eighty-three") },
1169
- enumerable: trueValue()
1170
- })
1171
-
1172
- const val_84 = require("@positive-numbers/eighty-four")
1173
- exportsMap.eightyFour = val_84
1174
- exportsMap.getEightyFour = constant(val_84)
1175
- $Object.defineProperty(exportsMap, "readonlyEightyFour", {
1176
- value: val_84,
1177
- writable: falseValue(),
1178
- enumerable: trueValue(),
1179
- configurable: falseValue()
1180
- })
1181
- $Object.defineProperty(exportsMap, "dynamicEightyFour", {
1182
- get: function() { return require("@positive-numbers/eighty-four") },
1183
- enumerable: trueValue()
1184
- })
1185
-
1186
- const val_85 = require("@positive-numbers/eighty-five")
1187
- exportsMap.eightyFive = val_85
1188
- exportsMap.getEightyFive = constant(val_85)
1189
- $Object.defineProperty(exportsMap, "readonlyEightyFive", {
1190
- value: val_85,
1191
- writable: falseValue(),
1192
- enumerable: trueValue(),
1193
- configurable: falseValue()
1194
- })
1195
- $Object.defineProperty(exportsMap, "dynamicEightyFive", {
1196
- get: function() { return require("@positive-numbers/eighty-five") },
1197
- enumerable: trueValue()
1198
- })
1199
-
1200
- const val_86 = require("@positive-numbers/eighty-six")
1201
- exportsMap.eightySix = val_86
1202
- exportsMap.getEightySix = constant(val_86)
1203
- $Object.defineProperty(exportsMap, "readonlyEightySix", {
1204
- value: val_86,
1205
- writable: falseValue(),
1206
- enumerable: trueValue(),
1207
- configurable: falseValue()
1208
- })
1209
- $Object.defineProperty(exportsMap, "dynamicEightySix", {
1210
- get: function() { return require("@positive-numbers/eighty-six") },
1211
- enumerable: trueValue()
1212
- })
1213
-
1214
- const val_87 = require("@positive-numbers/eighty-seven")
1215
- exportsMap.eightySeven = val_87
1216
- exportsMap.getEightySeven = constant(val_87)
1217
- $Object.defineProperty(exportsMap, "readonlyEightySeven", {
1218
- value: val_87,
1219
- writable: falseValue(),
1220
- enumerable: trueValue(),
1221
- configurable: falseValue()
1222
- })
1223
- $Object.defineProperty(exportsMap, "dynamicEightySeven", {
1224
- get: function() { return require("@positive-numbers/eighty-seven") },
1225
- enumerable: trueValue()
1226
- })
1227
-
1228
- const val_88 = require("@positive-numbers/eighty-eight")
1229
- exportsMap.eightyEight = val_88
1230
- exportsMap.getEightyEight = constant(val_88)
1231
- $Object.defineProperty(exportsMap, "readonlyEightyEight", {
1232
- value: val_88,
1233
- writable: falseValue(),
1234
- enumerable: trueValue(),
1235
- configurable: falseValue()
1236
- })
1237
- $Object.defineProperty(exportsMap, "dynamicEightyEight", {
1238
- get: function() { return require("@positive-numbers/eighty-eight") },
1239
- enumerable: trueValue()
1240
- })
1241
-
1242
- const val_89 = require("@positive-numbers/eighty-nine")
1243
- exportsMap.eightyNine = val_89
1244
- exportsMap.getEightyNine = constant(val_89)
1245
- $Object.defineProperty(exportsMap, "readonlyEightyNine", {
1246
- value: val_89,
1247
- writable: falseValue(),
1248
- enumerable: trueValue(),
1249
- configurable: falseValue()
1250
- })
1251
- $Object.defineProperty(exportsMap, "dynamicEightyNine", {
1252
- get: function() { return require("@positive-numbers/eighty-nine") },
1253
- enumerable: trueValue()
1254
- })
1255
-
1256
- const val_90 = require("@positive-numbers/ninety")
1257
- exportsMap.ninety = val_90
1258
- exportsMap.getNinety = constant(val_90)
1259
- $Object.defineProperty(exportsMap, "readonlyNinety", {
1260
- value: val_90,
1261
- writable: falseValue(),
1262
- enumerable: trueValue(),
1263
- configurable: falseValue()
1264
- })
1265
- $Object.defineProperty(exportsMap, "dynamicNinety", {
1266
- get: function() { return require("@positive-numbers/ninety") },
1267
- enumerable: trueValue()
1268
- })
1269
-
1270
- const val_91 = require("@positive-numbers/ninety-one")
1271
- exportsMap.ninetyOne = val_91
1272
- exportsMap.getNinetyOne = constant(val_91)
1273
- $Object.defineProperty(exportsMap, "readonlyNinetyOne", {
1274
- value: val_91,
1275
- writable: falseValue(),
1276
- enumerable: trueValue(),
1277
- configurable: falseValue()
1278
- })
1279
- $Object.defineProperty(exportsMap, "dynamicNinetyOne", {
1280
- get: function() { return require("@positive-numbers/ninety-one") },
1281
- enumerable: trueValue()
1282
- })
1283
-
1284
- const val_92 = require("@positive-numbers/ninety-two")
1285
- exportsMap.ninetyTwo = val_92
1286
- exportsMap.getNinetyTwo = constant(val_92)
1287
- $Object.defineProperty(exportsMap, "readonlyNinetyTwo", {
1288
- value: val_92,
1289
- writable: falseValue(),
1290
- enumerable: trueValue(),
1291
- configurable: falseValue()
1292
- })
1293
- $Object.defineProperty(exportsMap, "dynamicNinetyTwo", {
1294
- get: function() { return require("@positive-numbers/ninety-two") },
1295
- enumerable: trueValue()
1296
- })
1297
-
1298
- const val_93 = require("@positive-numbers/ninety-three")
1299
- exportsMap.ninetyThree = val_93
1300
- exportsMap.getNinetyThree = constant(val_93)
1301
- $Object.defineProperty(exportsMap, "readonlyNinetyThree", {
1302
- value: val_93,
1303
- writable: falseValue(),
1304
- enumerable: trueValue(),
1305
- configurable: falseValue()
1306
- })
1307
- $Object.defineProperty(exportsMap, "dynamicNinetyThree", {
1308
- get: function() { return require("@positive-numbers/ninety-three") },
1309
- enumerable: trueValue()
1310
- })
1311
-
1312
- const val_94 = require("@positive-numbers/ninety-four")
1313
- exportsMap.ninetyFour = val_94
1314
- exportsMap.getNinetyFour = constant(val_94)
1315
- $Object.defineProperty(exportsMap, "readonlyNinetyFour", {
1316
- value: val_94,
1317
- writable: falseValue(),
1318
- enumerable: trueValue(),
1319
- configurable: falseValue()
1320
- })
1321
- $Object.defineProperty(exportsMap, "dynamicNinetyFour", {
1322
- get: function() { return require("@positive-numbers/ninety-four") },
1323
- enumerable: trueValue()
1324
- })
1325
-
1326
- const val_95 = require("@positive-numbers/ninety-five")
1327
- exportsMap.ninetyFive = val_95
1328
- exportsMap.getNinetyFive = constant(val_95)
1329
- $Object.defineProperty(exportsMap, "readonlyNinetyFive", {
1330
- value: val_95,
1331
- writable: falseValue(),
1332
- enumerable: trueValue(),
1333
- configurable: falseValue()
1334
- })
1335
- $Object.defineProperty(exportsMap, "dynamicNinetyFive", {
1336
- get: function() { return require("@positive-numbers/ninety-five") },
1337
- enumerable: trueValue()
1338
- })
1339
-
1340
- const val_96 = require("@positive-numbers/ninety-six")
1341
- exportsMap.ninetySix = val_96
1342
- exportsMap.getNinetySix = constant(val_96)
1343
- $Object.defineProperty(exportsMap, "readonlyNinetySix", {
1344
- value: val_96,
1345
- writable: falseValue(),
1346
- enumerable: trueValue(),
1347
- configurable: falseValue()
1348
- })
1349
- $Object.defineProperty(exportsMap, "dynamicNinetySix", {
1350
- get: function() { return require("@positive-numbers/ninety-six") },
1351
- enumerable: trueValue()
1352
- })
1353
-
1354
- const val_97 = require("@positive-numbers/ninety-seven")
1355
- exportsMap.ninetySeven = val_97
1356
- exportsMap.getNinetySeven = constant(val_97)
1357
- $Object.defineProperty(exportsMap, "readonlyNinetySeven", {
1358
- value: val_97,
1359
- writable: falseValue(),
1360
- enumerable: trueValue(),
1361
- configurable: falseValue()
1362
- })
1363
- $Object.defineProperty(exportsMap, "dynamicNinetySeven", {
1364
- get: function() { return require("@positive-numbers/ninety-seven") },
1365
- enumerable: trueValue()
1366
- })
1367
-
1368
- const val_98 = require("@positive-numbers/ninety-eight")
1369
- exportsMap.ninetyEight = val_98
1370
- exportsMap.getNinetyEight = constant(val_98)
1371
- $Object.defineProperty(exportsMap, "readonlyNinetyEight", {
1372
- value: val_98,
1373
- writable: falseValue(),
1374
- enumerable: trueValue(),
1375
- configurable: falseValue()
1376
- })
1377
- $Object.defineProperty(exportsMap, "dynamicNinetyEight", {
1378
- get: function() { return require("@positive-numbers/ninety-eight") },
1379
- enumerable: trueValue()
1380
- })
1381
-
1382
- const val_99 = require("@positive-numbers/ninety-nine")
1383
- exportsMap.ninetyNine = val_99
1384
- exportsMap.getNinetyNine = constant(val_99)
1385
- $Object.defineProperty(exportsMap, "readonlyNinetyNine", {
1386
- value: val_99,
1387
- writable: falseValue(),
1388
- enumerable: trueValue(),
1389
- configurable: falseValue()
1390
- })
1391
- $Object.defineProperty(exportsMap, "dynamicNinetyNine", {
1392
- get: function() { return require("@positive-numbers/ninety-nine") },
1393
- enumerable: trueValue()
1394
- })
1395
-
1396
- const val_100 = require("@positive-numbers/one-hundred")
1397
- exportsMap.oneHundred = val_100
1398
- exportsMap.getOneHundred = constant(val_100)
1399
- $Object.defineProperty(exportsMap, "readonlyOneHundred", {
1400
- value: val_100,
1401
- writable: falseValue(),
1402
- enumerable: trueValue(),
1403
- configurable: falseValue()
1404
- })
1405
- $Object.defineProperty(exportsMap, "dynamicOneHundred", {
1406
- get: function() { return require("@positive-numbers/one-hundred") },
1407
- enumerable: trueValue()
1408
- })
1409
-
1410
- module.exports = exportsMap
1
+ const val_0 = require("@positive-numbers/zero")
2
+ exports.positiveZero = val_0 // Export the positive number 0.
3
+
4
+ const val_1 = require("@positive-numbers/one")
5
+ exports.positiveOne = val_1 // Export the positive number 1.
6
+
7
+ const val_2 = require("@positive-numbers/two")
8
+ exports.positiveTwo = val_2 // Export the positive number 2.
9
+
10
+ const val_3 = require("@positive-numbers/three")
11
+ exports.positiveThree = val_3 // Export the positive number 3.
12
+
13
+ const val_4 = require("@positive-numbers/four")
14
+ exports.positiveFour = val_4 // Export the positive number 4.
15
+
16
+ const val_5 = require("@positive-numbers/five")
17
+ exports.positiveFive = val_5 // Export the positive number 5.
18
+
19
+ const val_6 = require("@positive-numbers/six")
20
+ exports.positiveSix = val_6 // Export the positive number 6.
21
+
22
+ const val_7 = require("@positive-numbers/seven")
23
+ exports.positiveSeven = val_7 // Export the positive number 7.
24
+
25
+ const val_8 = require("@positive-numbers/eight")
26
+ exports.positiveEight = val_8 // Export the positive number 8.
27
+
28
+ const val_9 = require("@positive-numbers/nine")
29
+ exports.positiveNine = val_9 // Export the positive number 9.
30
+
31
+ const val_10 = require("@positive-numbers/ten")
32
+ exports.positiveTen = val_10 // Export the positive number 10.
33
+
34
+ const val_11 = require("@positive-numbers/eleven")
35
+ exports.positiveEleven = val_11 // Export the positive number 11.
36
+
37
+ const val_12 = require("@positive-numbers/twelve")
38
+ exports.positiveTwelve = val_12 // Export the positive number 12.
39
+
40
+ const val_13 = require("@positive-numbers/thirteen")
41
+ exports.positiveThirteen = val_13 // Export the positive number 13.
42
+
43
+ const val_14 = require("@positive-numbers/fourteen")
44
+ exports.positiveFourteen = val_14 // Export the positive number 14.
45
+
46
+ const val_15 = require("@positive-numbers/fifteen")
47
+ exports.positiveFifteen = val_15 // Export the positive number 15.
48
+
49
+ const val_16 = require("@positive-numbers/sixteen")
50
+ exports.positiveSixteen = val_16 // Export the positive number 16.
51
+
52
+ const val_17 = require("@positive-numbers/seventeen")
53
+ exports.positiveSeventeen = val_17 // Export the positive number 17.
54
+
55
+ const val_18 = require("@positive-numbers/eighteen")
56
+ exports.positiveEighteen = val_18 // Export the positive number 18.
57
+
58
+ const val_19 = require("@positive-numbers/nineteen")
59
+ exports.positiveNineteen = val_19 // Export the positive number 19.
60
+
61
+ const val_20 = require("@positive-numbers/twenty")
62
+ exports.positiveTwenty = val_20 // Export the positive number 20.
63
+
64
+ const val_21 = require("@positive-numbers/twenty-one")
65
+ exports.positiveTwentyOne = val_21 // Export the positive number 21.
66
+
67
+ const val_22 = require("@positive-numbers/twenty-two")
68
+ exports.positiveTwentyTwo = val_22 // Export the positive number 22.
69
+
70
+ const val_23 = require("@positive-numbers/twenty-three")
71
+ exports.positiveTwentyThree = val_23 // Export the positive number 23.
72
+
73
+ const val_24 = require("@positive-numbers/twenty-four")
74
+ exports.positiveTwentyFour = val_24 // Export the positive number 24.
75
+
76
+ const val_25 = require("@positive-numbers/twenty-five")
77
+ exports.positiveTwentyFive = val_25 // Export the positive number 25.
78
+
79
+ const val_26 = require("@positive-numbers/twenty-six")
80
+ exports.positiveTwentySix = val_26 // Export the positive number 26.
81
+
82
+ const val_27 = require("@positive-numbers/twenty-seven")
83
+ exports.positiveTwentySeven = val_27 // Export the positive number 27.
84
+
85
+ const val_28 = require("@positive-numbers/twenty-eight")
86
+ exports.positiveTwentyEight = val_28 // Export the positive number 28.
87
+
88
+ const val_29 = require("@positive-numbers/twenty-nine")
89
+ exports.positiveTwentyNine = val_29 // Export the positive number 29.
90
+
91
+ const val_30 = require("@positive-numbers/thirty")
92
+ exports.positiveThirty = val_30 // Export the positive number 30.
93
+
94
+ const val_31 = require("@positive-numbers/thirty-one")
95
+ exports.positiveThirtyOne = val_31 // Export the positive number 31.
96
+
97
+ const val_32 = require("@positive-numbers/thirty-two")
98
+ exports.positiveThirtyTwo = val_32 // Export the positive number 32.
99
+
100
+ const val_33 = require("@positive-numbers/thirty-three")
101
+ exports.positiveThirtyThree = val_33 // Export the positive number 33.
102
+
103
+ const val_34 = require("@positive-numbers/thirty-four")
104
+ exports.positiveThirtyFour = val_34 // Export the positive number 34.
105
+
106
+ const val_35 = require("@positive-numbers/thirty-five")
107
+ exports.positiveThirtyFive = val_35 // Export the positive number 35.
108
+
109
+ const val_36 = require("@positive-numbers/thirty-six")
110
+ exports.positiveThirtySix = val_36 // Export the positive number 36.
111
+
112
+ const val_37 = require("@positive-numbers/thirty-seven")
113
+ exports.positiveThirtySeven = val_37 // Export the positive number 37.
114
+
115
+ const val_38 = require("@positive-numbers/thirty-eight")
116
+ exports.positiveThirtyEight = val_38 // Export the positive number 38.
117
+
118
+ const val_39 = require("@positive-numbers/thirty-nine")
119
+ exports.positiveThirtyNine = val_39 // Export the positive number 39.
120
+
121
+ const val_40 = require("@positive-numbers/forty")
122
+ exports.positiveForty = val_40 // Export the positive number 40.
123
+
124
+ const val_41 = require("@positive-numbers/forty-one")
125
+ exports.positiveFortyOne = val_41 // Export the positive number 41.
126
+
127
+ const val_42 = require("@positive-numbers/forty-two")
128
+ exports.positiveFortyTwo = val_42 // Export the positive number 42.
129
+
130
+ const val_43 = require("@positive-numbers/forty-three")
131
+ exports.positiveFortyThree = val_43 // Export the positive number 43.
132
+
133
+ const val_44 = require("@positive-numbers/forty-four")
134
+ exports.positiveFortyFour = val_44 // Export the positive number 44.
135
+
136
+ const val_45 = require("@positive-numbers/forty-five")
137
+ exports.positiveFortyFive = val_45 // Export the positive number 45.
138
+
139
+ const val_46 = require("@positive-numbers/forty-six")
140
+ exports.positiveFortySix = val_46 // Export the positive number 46.
141
+
142
+ const val_47 = require("@positive-numbers/forty-seven")
143
+ exports.positiveFortySeven = val_47 // Export the positive number 47.
144
+
145
+ const val_48 = require("@positive-numbers/forty-eight")
146
+ exports.positiveFortyEight = val_48 // Export the positive number 48.
147
+
148
+ const val_49 = require("@positive-numbers/forty-nine")
149
+ exports.positiveFortyNine = val_49 // Export the positive number 49.
150
+
151
+ const val_50 = require("@positive-numbers/fifty")
152
+ exports.positiveFifty = val_50 // Export the positive number 50.
153
+
154
+ const val_51 = require("@positive-numbers/fifty-one")
155
+ exports.positiveFiftyOne = val_51 // Export the positive number 51.
156
+
157
+ const val_52 = require("@positive-numbers/fifty-two")
158
+ exports.positiveFiftyTwo = val_52 // Export the positive number 52.
159
+
160
+ const val_53 = require("@positive-numbers/fifty-three")
161
+ exports.positiveFiftyThree = val_53 // Export the positive number 53.
162
+
163
+ const val_54 = require("@positive-numbers/fifty-four")
164
+ exports.positiveFiftyFour = val_54 // Export the positive number 54.
165
+
166
+ const val_55 = require("@positive-numbers/fifty-five")
167
+ exports.positiveFiftyFive = val_55 // Export the positive number 55.
168
+
169
+ const val_56 = require("@positive-numbers/fifty-six")
170
+ exports.positiveFiftySix = val_56 // Export the positive number 56.
171
+
172
+ const val_57 = require("@positive-numbers/fifty-seven")
173
+ exports.positiveFiftySeven = val_57 // Export the positive number 57.
174
+
175
+ const val_58 = require("@positive-numbers/fifty-eight")
176
+ exports.positiveFiftyEight = val_58 // Export the positive number 58.
177
+
178
+ const val_59 = require("@positive-numbers/fifty-nine")
179
+ exports.positiveFiftyNine = val_59 // Export the positive number 59.
180
+
181
+ const val_60 = require("@positive-numbers/sixty")
182
+ exports.positiveSixty = val_60 // Export the positive number 60.
183
+
184
+ const val_61 = require("@positive-numbers/sixty-one")
185
+ exports.positiveSixtyOne = val_61 // Export the positive number 61.
186
+
187
+ const val_62 = require("@positive-numbers/sixty-two")
188
+ exports.positiveSixtyTwo = val_62 // Export the positive number 62.
189
+
190
+ const val_63 = require("@positive-numbers/sixty-three")
191
+ exports.positiveSixtyThree = val_63 // Export the positive number 63.
192
+
193
+ const val_64 = require("@positive-numbers/sixty-four")
194
+ exports.positiveSixtyFour = val_64 // Export the positive number 64.
195
+
196
+ const val_65 = require("@positive-numbers/sixty-five")
197
+ exports.positiveSixtyFive = val_65 // Export the positive number 65.
198
+
199
+ const val_66 = require("@positive-numbers/sixty-six")
200
+ exports.positiveSixtySix = val_66 // Export the positive number 66.
201
+
202
+ const val_67 = require("@positive-numbers/sixty-seven")
203
+ exports.positiveSixtySeven = val_67 // Export the positive number 67.
204
+
205
+ const val_68 = require("@positive-numbers/sixty-eight")
206
+ exports.positiveSixtyEight = val_68 // Export the positive number 68.
207
+
208
+ const val_69 = require("@positive-numbers/sixty-nine")
209
+ exports.positiveSixtyNine = val_69 // Export the positive number 69.
210
+
211
+ const val_70 = require("@positive-numbers/seventy")
212
+ exports.positiveSeventy = val_70 // Export the positive number 70.
213
+
214
+ const val_71 = require("@positive-numbers/seventy-one")
215
+ exports.positiveSeventyOne = val_71 // Export the positive number 71.
216
+
217
+ const val_72 = require("@positive-numbers/seventy-two")
218
+ exports.positiveSeventyTwo = val_72 // Export the positive number 72.
219
+
220
+ const val_73 = require("@positive-numbers/seventy-three")
221
+ exports.positiveSeventyThree = val_73 // Export the positive number 73.
222
+
223
+ const val_74 = require("@positive-numbers/seventy-four")
224
+ exports.positiveSeventyFour = val_74 // Export the positive number 74.
225
+
226
+ const val_75 = require("@positive-numbers/seventy-five")
227
+ exports.positiveSeventyFive = val_75 // Export the positive number 75.
228
+
229
+ const val_76 = require("@positive-numbers/seventy-six")
230
+ exports.positiveSeventySix = val_76 // Export the positive number 76.
231
+
232
+ const val_77 = require("@positive-numbers/seventy-seven")
233
+ exports.positiveSeventySeven = val_77 // Export the positive number 77.
234
+
235
+ const val_78 = require("@positive-numbers/seventy-eight")
236
+ exports.positiveSeventyEight = val_78 // Export the positive number 78.
237
+
238
+ const val_79 = require("@positive-numbers/seventy-nine")
239
+ exports.positiveSeventyNine = val_79 // Export the positive number 79.
240
+
241
+ const val_80 = require("@positive-numbers/eighty")
242
+ exports.positiveEighty = val_80 // Export the positive number 80.
243
+
244
+ const val_81 = require("@positive-numbers/eighty-one")
245
+ exports.positiveEightyOne = val_81 // Export the positive number 81.
246
+
247
+ const val_82 = require("@positive-numbers/eighty-two")
248
+ exports.positiveEightyTwo = val_82 // Export the positive number 82.
249
+
250
+ const val_83 = require("@positive-numbers/eighty-three")
251
+ exports.positiveEightyThree = val_83 // Export the positive number 83.
252
+
253
+ const val_84 = require("@positive-numbers/eighty-four")
254
+ exports.positiveEightyFour = val_84 // Export the positive number 84.
255
+
256
+ const val_85 = require("@positive-numbers/eighty-five")
257
+ exports.positiveEightyFive = val_85 // Export the positive number 85.
258
+
259
+ const val_86 = require("@positive-numbers/eighty-six")
260
+ exports.positiveEightySix = val_86 // Export the positive number 86.
261
+
262
+ const val_87 = require("@positive-numbers/eighty-seven")
263
+ exports.positiveEightySeven = val_87 // Export the positive number 87.
264
+
265
+ const val_88 = require("@positive-numbers/eighty-eight")
266
+ exports.positiveEightyEight = val_88 // Export the positive number 88.
267
+
268
+ const val_89 = require("@positive-numbers/eighty-nine")
269
+ exports.positiveEightyNine = val_89 // Export the positive number 89.
270
+
271
+ const val_90 = require("@positive-numbers/ninety")
272
+ exports.positiveNinety = val_90 // Export the positive number 90.
273
+
274
+ const val_91 = require("@positive-numbers/ninety-one")
275
+ exports.positiveNinetyOne = val_91 // Export the positive number 91.
276
+
277
+ const val_92 = require("@positive-numbers/ninety-two")
278
+ exports.positiveNinetyTwo = val_92 // Export the positive number 92.
279
+
280
+ const val_93 = require("@positive-numbers/ninety-three")
281
+ exports.positiveNinetyThree = val_93 // Export the positive number 93.
282
+
283
+ const val_94 = require("@positive-numbers/ninety-four")
284
+ exports.positiveNinetyFour = val_94 // Export the positive number 94.
285
+
286
+ const val_95 = require("@positive-numbers/ninety-five")
287
+ exports.positiveNinetyFive = val_95 // Export the positive number 95.
288
+
289
+ const val_96 = require("@positive-numbers/ninety-six")
290
+ exports.positiveNinetySix = val_96 // Export the positive number 96.
291
+
292
+ const val_97 = require("@positive-numbers/ninety-seven")
293
+ exports.positiveNinetySeven = val_97 // Export the positive number 97.
294
+
295
+ const val_98 = require("@positive-numbers/ninety-eight")
296
+ exports.positiveNinetyEight = val_98 // Export the positive number 98.
297
+
298
+ const val_99 = require("@positive-numbers/ninety-nine")
299
+ exports.positiveNinetyNine = val_99 // Export the positive number 99.
300
+
301
+ const val_100 = require("@positive-numbers/one-hundred")
302
+ exports.positiveOneHundred = val_100 // Export the positive number 100.
303
+
304
+ const val_negative_0 = require("@negative-numbers/zero")
305
+ exports.negativeZero = val_negative_0 // Export the negative number 0
306
+
307
+ const val_negative_1 = require("@negative-numbers/one")
308
+ exports.negativeOne = val_negative_1 // Export the negative number 1
309
+
310
+ const val_negative_2 = require("@negative-numbers/two")
311
+ exports.negativeTwo = val_negative_2 // Export the negative number 2
312
+
313
+ const val_negative_3 = require("@negative-numbers/three")
314
+ exports.negativeThree = val_negative_3 // Export the negative number 3
315
+
316
+ const val_negative_4 = require("@negative-numbers/four")
317
+ exports.negativeFour = val_negative_4 // Export the negative number 4
318
+
319
+ const val_negative_5 = require("@negative-numbers/five")
320
+ exports.negativeFive = val_negative_5 // Export the negative number 5
321
+
322
+ const val_negative_6 = require("@negative-numbers/six")
323
+ exports.negativeSix = val_negative_6 // Export the negative number 6
324
+
325
+ const val_negative_7 = require("@negative-numbers/seven")
326
+ exports.negativeSeven = val_negative_7 // Export the negative number 7
327
+
328
+ const val_negative_8 = require("@negative-numbers/eight")
329
+ exports.negativeEight = val_negative_8 // Export the negative number 8
330
+
331
+ const val_negative_9 = require("@negative-numbers/nine")
332
+ exports.negativeNine = val_negative_9 // Export the negative number 9
333
+
334
+ const val_negative_10 = require("@negative-numbers/ten")
335
+ exports.negativeTen = val_negative_10 // Export the negative number 10
336
+
337
+ const val_negative_11 = require("@negative-numbers/eleven")
338
+ exports.negativeEleven = val_negative_11 // Export the negative number 11
339
+
340
+ const val_negative_12 = require("@negative-numbers/twelve")
341
+ exports.negativeTwelve = val_negative_12 // Export the negative number 12
342
+
343
+ const val_negative_13 = require("@negative-numbers/thirteen")
344
+ exports.negativeThirteen = val_negative_13 // Export the negative number 13
345
+
346
+ const val_negative_14 = require("@negative-numbers/fourteen")
347
+ exports.negativeFourteen = val_negative_14 // Export the negative number 14
348
+
349
+ const val_negative_15 = require("@negative-numbers/fifteen")
350
+ exports.negativeFifteen = val_negative_15 // Export the negative number 15
351
+
352
+ const val_negative_16 = require("@negative-numbers/sixteen")
353
+ exports.negativeSixteen = val_negative_16 // Export the negative number 16
354
+
355
+ const val_negative_17 = require("@negative-numbers/seventeen")
356
+ exports.negativeSeventeen = val_negative_17 // Export the negative number 17
357
+
358
+ const val_negative_18 = require("@negative-numbers/eighteen")
359
+ exports.negativeEighteen = val_negative_18 // Export the negative number 18
360
+
361
+ const val_negative_19 = require("@negative-numbers/nineteen")
362
+ exports.negativeNineteen = val_negative_19 // Export the negative number 19
363
+
364
+ const val_negative_20 = require("@negative-numbers/twenty")
365
+ exports.negativeTwenty = val_negative_20 // Export the negative number 20
366
+
367
+ const val_negative_21 = require("@negative-numbers/twenty-one")
368
+ exports.negativeTwentyOne = val_negative_21 // Export the negative number 21
369
+
370
+ const val_negative_22 = require("@negative-numbers/twenty-two")
371
+ exports.negativeTwentyTwo = val_negative_22 // Export the negative number 22
372
+
373
+ const val_negative_23 = require("@negative-numbers/twenty-three")
374
+ exports.negativeTwentyThree = val_negative_23 // Export the negative number 23
375
+
376
+ const val_negative_24 = require("@negative-numbers/twenty-four")
377
+ exports.negativeTwentyFour = val_negative_24 // Export the negative number 24
378
+
379
+ const val_negative_25 = require("@negative-numbers/twenty-five")
380
+ exports.negativeTwentyFive = val_negative_25 // Export the negative number 25
381
+
382
+ const val_negative_26 = require("@negative-numbers/twenty-six")
383
+ exports.negativeTwentySix = val_negative_26 // Export the negative number 26
384
+
385
+ const val_negative_27 = require("@negative-numbers/twenty-seven")
386
+ exports.negativeTwentySeven = val_negative_27 // Export the negative number 27
387
+
388
+ const val_negative_28 = require("@negative-numbers/twenty-eight")
389
+ exports.negativeTwentyEight = val_negative_28 // Export the negative number 28
390
+
391
+ const val_negative_29 = require("@negative-numbers/twenty-nine")
392
+ exports.negativeTwentyNine = val_negative_29 // Export the negative number 29
393
+
394
+ const val_negative_30 = require("@negative-numbers/thirty")
395
+ exports.negativeThirty = val_negative_30 // Export the negative number 30
396
+
397
+ const val_negative_31 = require("@negative-numbers/thirty-one")
398
+ exports.negativeThirtyOne = val_negative_31 // Export the negative number 31
399
+
400
+ const val_negative_32 = require("@negative-numbers/thirty-two")
401
+ exports.negativeThirtyTwo = val_negative_32 // Export the negative number 32
402
+
403
+ const val_negative_33 = require("@negative-numbers/thirty-three")
404
+ exports.negativeThirtyThree = val_negative_33 // Export the negative number 33
405
+
406
+ const val_negative_34 = require("@negative-numbers/thirty-four")
407
+ exports.negativeThirtyFour = val_negative_34 // Export the negative number 34
408
+
409
+ const val_negative_35 = require("@negative-numbers/thirty-five")
410
+ exports.negativeThirtyFive = val_negative_35 // Export the negative number 35
411
+
412
+ const val_negative_36 = require("@negative-numbers/thirty-six")
413
+ exports.negativeThirtySix = val_negative_36 // Export the negative number 36
414
+
415
+ const val_negative_37 = require("@negative-numbers/thirty-seven")
416
+ exports.negativeThirtySeven = val_negative_37 // Export the negative number 37
417
+
418
+ const val_negative_38 = require("@negative-numbers/thirty-eight")
419
+ exports.negativeThirtyEight = val_negative_38 // Export the negative number 38
420
+
421
+ const val_negative_39 = require("@negative-numbers/thirty-nine")
422
+ exports.negativeThirtyNine = val_negative_39 // Export the negative number 39
423
+
424
+ const val_negative_40 = require("@negative-numbers/forty")
425
+ exports.negativeForty = val_negative_40 // Export the negative number 40
426
+
427
+ const val_negative_41 = require("@negative-numbers/forty-one")
428
+ exports.negativeFortyOne = val_negative_41 // Export the negative number 41
429
+
430
+ const val_negative_42 = require("@negative-numbers/forty-two")
431
+ exports.negativeFortyTwo = val_negative_42 // Export the negative number 42
432
+
433
+ const val_negative_43 = require("@negative-numbers/forty-three")
434
+ exports.negativeFortyThree = val_negative_43 // Export the negative number 43
435
+
436
+ const val_negative_44 = require("@negative-numbers/forty-four")
437
+ exports.negativeFortyFour = val_negative_44 // Export the negative number 44
438
+
439
+ const val_negative_45 = require("@negative-numbers/forty-five")
440
+ exports.negativeFortyFive = val_negative_45 // Export the negative number 45
441
+
442
+ const val_negative_46 = require("@negative-numbers/forty-six")
443
+ exports.negativeFortySix = val_negative_46 // Export the negative number 46
444
+
445
+ const val_negative_47 = require("@negative-numbers/forty-seven")
446
+ exports.negativeFortySeven = val_negative_47 // Export the negative number 47
447
+
448
+ const val_negative_48 = require("@negative-numbers/forty-eight")
449
+ exports.negativeFortyEight = val_negative_48 // Export the negative number 48
450
+
451
+ const val_negative_49 = require("@negative-numbers/forty-nine")
452
+ exports.negativeFortyNine = val_negative_49 // Export the negative number 49
453
+
454
+ const val_negative_50 = require("@negative-numbers/fifty")
455
+ exports.negativeFifty = val_negative_50 // Export the negative number 50
456
+
457
+ const val_negative_51 = require("@negative-numbers/fifty-one")
458
+ exports.negativeFiftyOne = val_negative_51 // Export the negative number 51
459
+
460
+ const val_negative_52 = require("@negative-numbers/fifty-two")
461
+ exports.negativeFiftyTwo = val_negative_52 // Export the negative number 52
462
+
463
+ const val_negative_53 = require("@negative-numbers/fifty-three")
464
+ exports.negativeFiftyThree = val_negative_53 // Export the negative number 53
465
+
466
+ const val_negative_54 = require("@negative-numbers/fifty-four")
467
+ exports.negativeFiftyFour = val_negative_54 // Export the negative number 54
468
+
469
+ const val_negative_55 = require("@negative-numbers/fifty-five")
470
+ exports.negativeFiftyFive = val_negative_55 // Export the negative number 55
471
+
472
+ const val_negative_56 = require("@negative-numbers/fifty-six")
473
+ exports.negativeFiftySix = val_negative_56 // Export the negative number 56
474
+
475
+ const val_negative_57 = require("@negative-numbers/fifty-seven")
476
+ exports.negativeFiftySeven = val_negative_57 // Export the negative number 57
477
+
478
+ const val_negative_58 = require("@negative-numbers/fifty-eight")
479
+ exports.negativeFiftyEight = val_negative_58 // Export the negative number 58
480
+
481
+ const val_negative_59 = require("@negative-numbers/fifty-nine")
482
+ exports.negativeFiftyNine = val_negative_59 // Export the negative number 59
483
+
484
+ const val_negative_60 = require("@negative-numbers/sixty")
485
+ exports.negativeSixty = val_negative_60 // Export the negative number 60
486
+
487
+ const val_negative_61 = require("@negative-numbers/sixty-one")
488
+ exports.negativeSixtyOne = val_negative_61 // Export the negative number 61
489
+
490
+ const val_negative_62 = require("@negative-numbers/sixty-two")
491
+ exports.negativeSixtyTwo = val_negative_62 // Export the negative number 62
492
+
493
+ const val_negative_63 = require("@negative-numbers/sixty-three")
494
+ exports.negativeSixtyThree = val_negative_63 // Export the negative number 63
495
+
496
+ const val_negative_64 = require("@negative-numbers/sixty-four")
497
+ exports.negativeSixtyFour = val_negative_64 // Export the negative number 64
498
+
499
+ const val_negative_65 = require("@negative-numbers/sixty-five")
500
+ exports.negativeSixtyFive = val_negative_65 // Export the negative number 65
501
+
502
+ const val_negative_66 = require("@negative-numbers/sixty-six")
503
+ exports.negativeSixtySix = val_negative_66 // Export the negative number 66
504
+
505
+ const val_negative_67 = require("@negative-numbers/sixty-seven")
506
+ exports.negativeSixtySeven = val_negative_67 // Export the negative number 67
507
+
508
+ const val_negative_68 = require("@negative-numbers/sixty-eight")
509
+ exports.negativeSixtyEight = val_negative_68 // Export the negative number 68
510
+
511
+ const val_negative_69 = require("@negative-numbers/sixty-nine")
512
+ exports.negativeSixtyNine = val_negative_69 // Export the negative number 69
513
+
514
+ const val_negative_70 = require("@negative-numbers/seventy")
515
+ exports.negativeSeventy = val_negative_70 // Export the negative number 70
516
+
517
+ const val_negative_71 = require("@negative-numbers/seventy-one")
518
+ exports.negativeSeventyOne = val_negative_71 // Export the negative number 71
519
+
520
+ const val_negative_72 = require("@negative-numbers/seventy-two")
521
+ exports.negativeSeventyTwo = val_negative_72 // Export the negative number 72
522
+
523
+ const val_negative_73 = require("@negative-numbers/seventy-three")
524
+ exports.negativeSeventyThree = val_negative_73 // Export the negative number 73
525
+
526
+ const val_negative_74 = require("@negative-numbers/seventy-four")
527
+ exports.negativeSeventyFour = val_negative_74 // Export the negative number 74
528
+
529
+ const val_negative_75 = require("@negative-numbers/seventy-five")
530
+ exports.negativeSeventyFive = val_negative_75 // Export the negative number 75
531
+
532
+ const val_negative_76 = require("@negative-numbers/seventy-six")
533
+ exports.negativeSeventySix = val_negative_76 // Export the negative number 76
534
+
535
+ const val_negative_77 = require("@negative-numbers/seventy-seven")
536
+ exports.negativeSeventySeven = val_negative_77 // Export the negative number 77
537
+
538
+ const val_negative_78 = require("@negative-numbers/seventy-eight")
539
+ exports.negativeSeventyEight = val_negative_78 // Export the negative number 78
540
+
541
+ const val_negative_79 = require("@negative-numbers/seventy-nine")
542
+ exports.negativeSeventyNine = val_negative_79 // Export the negative number 79
543
+
544
+ const val_negative_80 = require("@negative-numbers/eighty")
545
+ exports.negativeEighty = val_negative_80 // Export the negative number 80
546
+
547
+ const val_negative_81 = require("@negative-numbers/eighty-one")
548
+ exports.negativeEightyOne = val_negative_81 // Export the negative number 81
549
+
550
+ const val_negative_82 = require("@negative-numbers/eighty-two")
551
+ exports.negativeEightyTwo = val_negative_82 // Export the negative number 82
552
+
553
+ const val_negative_83 = require("@negative-numbers/eighty-three")
554
+ exports.negativeEightyThree = val_negative_83 // Export the negative number 83
555
+
556
+ const val_negative_84 = require("@negative-numbers/eighty-four")
557
+ exports.negativeEightyFour = val_negative_84 // Export the negative number 84
558
+
559
+ const val_negative_85 = require("@negative-numbers/eighty-five")
560
+ exports.negativeEightyFive = val_negative_85 // Export the negative number 85
561
+
562
+ const val_negative_86 = require("@negative-numbers/eighty-six")
563
+ exports.negativeEightySix = val_negative_86 // Export the negative number 86
564
+
565
+ const val_negative_87 = require("@negative-numbers/eighty-seven")
566
+ exports.negativeEightySeven = val_negative_87 // Export the negative number 87
567
+
568
+ const val_negative_88 = require("@negative-numbers/eighty-eight")
569
+ exports.negativeEightyEight = val_negative_88 // Export the negative number 88
570
+
571
+ const val_negative_89 = require("@negative-numbers/eighty-nine")
572
+ exports.negativeEightyNine = val_negative_89 // Export the negative number 89
573
+
574
+ const val_negative_90 = require("@negative-numbers/ninety")
575
+ exports.negativeNinety = val_negative_90 // Export the negative number 90
576
+
577
+ const val_negative_91 = require("@negative-numbers/ninety-one")
578
+ exports.negativeNinetyOne = val_negative_91 // Export the negative number 91
579
+
580
+ const val_negative_92 = require("@negative-numbers/ninety-two")
581
+ exports.negativeNinetyTwo = val_negative_92 // Export the negative number 92
582
+
583
+ const val_negative_93 = require("@negative-numbers/ninety-three")
584
+ exports.negativeNinetyThree = val_negative_93 // Export the negative number 93
585
+
586
+ const val_negative_94 = require("@negative-numbers/ninety-four")
587
+ exports.negativeNinetyFour = val_negative_94 // Export the negative number 94
588
+
589
+ const val_negative_95 = require("@negative-numbers/ninety-five")
590
+ exports.negativeNinetyFive = val_negative_95 // Export the negative number 95
591
+
592
+ const val_negative_96 = require("@negative-numbers/ninety-six")
593
+ exports.negativeNinetySix = val_negative_96 // Export the negative number 96
594
+
595
+ const val_negative_97 = require("@negative-numbers/ninety-seven")
596
+ exports.negativeNinetySeven = val_negative_97 // Export the negative number 97
597
+
598
+ const val_negative_98 = require("@negative-numbers/ninety-eight")
599
+ exports.negativeNinetyEight = val_negative_98 // Export the negative number 98
600
+
601
+ const val_negative_99 = require("@negative-numbers/ninety-nine")
602
+ exports.negativeNinetyNine = val_negative_99 // Export the negative number 99
603
+
604
+ const val_negative_100 = require("@negative-numbers/one-hundred")
605
+ exports.negativeOneHundred = val_negative_100 // Export the negative number 100