dates-le 0.2.1

Extract every date and timestamp, and the exact instant each one resolves to
Documentation
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
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
{
	"$comment": "Generated by scripts/generate-date-parse-corpus.ts — V8 is the authority for what Date.parse returns, and the crate reimplements it. Do not hand-edit; regenerate.",
	"timezone": "America/New_York",
	"cases": [
		{
			"input": "2024-01-15T10:30:45Z",
			"why": "iso, zulu",
			"timestamp": 1705314645000
		},
		{
			"input": "2024-01-15T10:30:45.123Z",
			"why": "iso, millis",
			"timestamp": 1705314645123
		},
		{
			"input": "2024-01-15T10:30:45",
			"why": "iso, no zone — local",
			"timestamp": 1705332645000
		},
		{
			"input": "2024-01-15T10:30:45.123",
			"why": "iso, millis, no zone",
			"timestamp": 1705332645123
		},
		{
			"input": "2024-01-15T10:30:45+05:30",
			"why": "iso, positive offset",
			"timestamp": 1705294845000
		},
		{
			"input": "2024-01-15T10:30:45+05:00",
			"why": "the offset a basic-format +05 is padded into",
			"timestamp": 1705296645000
		},
		{
			"input": "2024-01-15T10:30:45-08:00",
			"why": "iso, negative offset",
			"timestamp": 1705343445000
		},
		{
			"input": "2024-01-15T10:30:45+00:00",
			"why": "iso, zero offset",
			"timestamp": 1705314645000
		},
		{
			"input": "2024-01-15T00:00:00Z",
			"why": "iso, midnight",
			"timestamp": 1705276800000
		},
		{
			"input": "2024-01-15T24:00:00Z",
			"why": "hour 24 is the next midnight",
			"timestamp": 1705363200000
		},
		{
			"input": "2024-01-15T10:60:00Z",
			"why": "minute 60 is a refusal",
			"timestamp": null
		},
		{
			"input": "2024-01-15T10:30:60Z",
			"why": "second 60 is a refusal",
			"timestamp": null
		},
		{
			"input": "2024-02-30T00:00:00Z",
			"why": "day 30 of February rolls over",
			"timestamp": 1709251200000
		},
		{
			"input": "2023-02-29T00:00:00Z",
			"why": "a leap day in a common year rolls over",
			"timestamp": 1677628800000
		},
		{
			"input": "2024-13-01T00:00:00Z",
			"why": "month 13 is a refusal",
			"timestamp": null
		},
		{
			"input": "2024-00-01T00:00:00Z",
			"why": "month 0 is a refusal",
			"timestamp": null
		},
		{
			"input": "2024-01-32T00:00:00Z",
			"why": "day 32 is a refusal",
			"timestamp": null
		},
		{
			"input": "2024-01-00T00:00:00Z",
			"why": "day 0 is a refusal",
			"timestamp": null
		},
		{
			"input": "2024-01-15T10:30:45+24:00",
			"why": "a 24-hour offset is a refusal",
			"timestamp": null
		},
		{
			"input": "1970-01-01T00:00:00Z",
			"why": "the epoch",
			"timestamp": 0
		},
		{
			"input": "1969-12-31T23:59:59Z",
			"why": "before the epoch",
			"timestamp": -1000
		},
		{
			"input": "2024-01-15T10:30:45.1Z",
			"why": "one fractional digit",
			"timestamp": 1705314645100
		},
		{
			"input": "2024-01-15T10:30:45.123456Z",
			"why": "fraction past millis truncates",
			"timestamp": 1705314645123
		},
		{
			"input": "2024-01-15",
			"why": "simple, and UTC where the datetime form is local",
			"timestamp": 1705276800000
		},
		{
			"input": "2024-02-29",
			"why": "a real leap day",
			"timestamp": 1709164800000
		},
		{
			"input": "2023-02-29",
			"why": "a fake leap day rolls over",
			"timestamp": 1677628800000
		},
		{
			"input": "2024-12-31",
			"why": "year end",
			"timestamp": 1735603200000
		},
		{
			"input": "2024-00-10",
			"why": "month 0 is a refusal",
			"timestamp": null
		},
		{
			"input": "2024-01-00",
			"why": "day 0 is a refusal",
			"timestamp": null
		},
		{
			"input": "Mon, 15 Jan 2024 10:30:45 GMT",
			"why": "rfc2822",
			"timestamp": 1705314645000
		},
		{
			"input": "Mon, 15 Jan 2024 10:30:45 UTC",
			"why": "utc names the same offset",
			"timestamp": 1705314645000
		},
		{
			"input": "Fri, 15 Jan 2024 10:30:45 GMT",
			"why": "the weekday is wrong and ignored",
			"timestamp": 1705314645000
		},
		{
			"input": "Xyz, 15 Jan 2024 10:30:45 GMT",
			"why": "the weekday is not a word and is ignored",
			"timestamp": 1705314645000
		},
		{
			"input": "Mon, 15 Xxx 2024 10:30:45 GMT",
			"why": "the month is not a word — a refusal",
			"timestamp": null
		},
		{
			"input": "Mon, 1 Jan 2024 00:00:00 GMT",
			"why": "a one-digit day",
			"timestamp": 1704067200000
		},
		{
			"input": "Mon, 15 Jan 2024 10:30:45 EST",
			"why": "EST is always -5, never zone-aware",
			"timestamp": 1705332645000
		},
		{
			"input": "Mon, 15 Jan 2024 10:30:45 EDT",
			"why": "EDT is always -4",
			"timestamp": 1705329045000
		},
		{
			"input": "Mon, 15 Jan 2024 10:30:45 CST",
			"why": "CST is always -6",
			"timestamp": 1705336245000
		},
		{
			"input": "Mon, 15 Jan 2024 10:30:45 CDT",
			"why": "CDT is always -5",
			"timestamp": 1705332645000
		},
		{
			"input": "Mon, 15 Jan 2024 10:30:45 MST",
			"why": "MST is always -7",
			"timestamp": 1705339845000
		},
		{
			"input": "Mon, 15 Jan 2024 10:30:45 MDT",
			"why": "MDT is always -6",
			"timestamp": 1705336245000
		},
		{
			"input": "Mon, 15 Jan 2024 10:30:45 PST",
			"why": "PST is always -8",
			"timestamp": 1705343445000
		},
		{
			"input": "Mon, 15 Jan 2024 10:30:45 PDT",
			"why": "PDT is always -7",
			"timestamp": 1705339845000
		},
		{
			"input": "Mon, 15 Jan 2024 10:30:45 CEST",
			"why": "CEST is not a word — a refusal",
			"timestamp": null
		},
		{
			"input": "Mon, 15 Jan 2024 10:30:45 CET",
			"why": "nor CET",
			"timestamp": null
		},
		{
			"input": "Mon, 15 Jan 2024 10:30:45 BST",
			"why": "nor BST",
			"timestamp": null
		},
		{
			"input": "Mon, 15 Jan 2024 10:30:45 JST",
			"why": "JST is not a word — a refusal",
			"timestamp": null
		},
		{
			"input": "Mon, 15 Jan 2024 10:30:45 AEST",
			"why": "AEST is not a word — a refusal",
			"timestamp": null
		},
		{
			"input": "Mon, 15 Jan 2024 10:30:45 IST",
			"why": "nor IST, which stands for three different zones",
			"timestamp": null
		},
		{
			"input": "Mon, 15 Jan 2024 10:30:45 XYZ",
			"why": "nonsense is a refusal",
			"timestamp": null
		},
		{
			"input": "Mon, 15 Jan 2024 10:30:45 +0100",
			"why": "the offset CET is rewritten to",
			"timestamp": 1705311045000
		},
		{
			"input": "Mon, 15 Jan 2024 10:30:45 +0200",
			"why": "and CEST",
			"timestamp": 1705307445000
		},
		{
			"input": "Mon, 15 Jan 2024 10:30:45 +0900",
			"why": "and JST",
			"timestamp": 1705282245000
		},
		{
			"input": "Mon, 15 Jan 2024 10:30:45 +1000",
			"why": "and AEST",
			"timestamp": 1705278645000
		},
		{
			"input": "Mon, 15 Jan 2024 10:30:45 +0530",
			"why": "and IST",
			"timestamp": 1705294845000
		},
		{
			"input": "Mon Jan 15 2024 10:30:45 GMT+0000",
			"why": "utc form",
			"timestamp": 1705314645000
		},
		{
			"input": "Mon Jan 15 2024 10:30:45 GMT-0800",
			"why": "utc form, negative",
			"timestamp": 1705343445000
		},
		{
			"input": "Xyz Jan 15 2024 10:30:45 GMT+0530",
			"why": "the weekday is ignored here too",
			"timestamp": 1705294845000
		},
		{
			"input": "Mon Jan 15 2024 10:30:45 GMT+0000 (Coordinated Universal Time)",
			"why": "the trailing comment is skipped",
			"timestamp": 1705314645000
		},
		{
			"input": "1/15/2024 10:30:45",
			"why": "local, US ordering",
			"timestamp": 1705332645000
		},
		{
			"input": "12/31/2024 23:59:59",
			"why": "local, year end",
			"timestamp": 1735707599000
		},
		{
			"input": "15/1/2024 10:30:45",
			"why": "D/M ordering is a refusal, not a reinterpretation",
			"timestamp": null
		},
		{
			"input": "13/1/2024 10:30:45",
			"why": "month 13 is a refusal",
			"timestamp": null
		},
		{
			"input": "2/30/2024 1:2:3",
			"why": "February 30 rolls over here too",
			"timestamp": 1709272923000
		},
		{
			"input": "1/15/2024 25:30:45",
			"why": "hour 25 is a refusal",
			"timestamp": null
		},
		{
			"input": "2024-01-15 10:30:45",
			"why": "a space where the T goes",
			"timestamp": 1705332645000
		},
		{
			"input": "2024-01-15 10:30:45.123",
			"why": "with millis",
			"timestamp": 1705332645123
		},
		{
			"input": "Jan 15 10:30:45 2026",
			"why": "syslog, year appended",
			"timestamp": 1768491045000
		},
		{
			"input": "Feb  5 09:01:02 2026",
			"why": "syslog pads the day with a second space",
			"timestamp": 1770300062000
		},
		{
			"input": "Dec 31 23:59:59 2026",
			"why": "syslog, year end",
			"timestamp": 1798779599000
		},
		{
			"input": "Xxx 15 10:30:45 2026",
			"why": "not a month — a refusal",
			"timestamp": null
		},
		{
			"input": "15 Jan 2024 10:30:08 +0000",
			"why": "apache, normalised",
			"timestamp": 1705314608000
		},
		{
			"input": "15 Jan 2024 10:30:08 -0500",
			"why": "apache, negative offset",
			"timestamp": 1705332608000
		},
		{
			"input": "15 Jan 2024 10:30:08 +0530",
			"why": "apache, half-hour offset",
			"timestamp": 1705294808000
		},
		{
			"input": "March 5, 2024",
			"why": "the month written out",
			"timestamp": 1709614800000
		},
		{
			"input": "March 5 2024",
			"why": "no comma",
			"timestamp": 1709614800000
		},
		{
			"input": "5 March 2024",
			"why": "day first",
			"timestamp": 1709614800000
		},
		{
			"input": "2024 March 5",
			"why": "year first",
			"timestamp": 1709614800000
		},
		{
			"input": "Mar 5, 2024",
			"why": "abbreviated",
			"timestamp": 1709614800000
		},
		{
			"input": "Janu 15 2024",
			"why": "four letters — matched on the first three",
			"timestamp": 1705294800000
		},
		{
			"input": "Januar 15 2024",
			"why": "six letters",
			"timestamp": 1705294800000
		},
		{
			"input": "January 15 2024",
			"why": "all of it",
			"timestamp": 1705294800000
		},
		{
			"input": "Janxxx 15 2024",
			"why": "three right letters and nonsense after",
			"timestamp": 1705294800000
		},
		{
			"input": "Ja 15 2024",
			"why": "two letters is not enough — a refusal",
			"timestamp": null
		},
		{
			"input": "JANUARY 15 2024",
			"why": "case does not matter",
			"timestamp": 1705294800000
		},
		{
			"input": "january 15 2024",
			"why": "nor here",
			"timestamp": 1705294800000
		},
		{
			"input": "Foo Jan 15 2024",
			"why": "a garbage word before the first number is skipped",
			"timestamp": 1705294800000
		},
		{
			"input": "Foo Bar Jan 15 2024",
			"why": "two of them",
			"timestamp": 1705294800000
		},
		{
			"input": "Jan 15 2024 Foo",
			"why": "a garbage word after a number is fatal",
			"timestamp": null
		},
		{
			"input": "Jané 15 2024",
			"why": "an accent joins the word, and jan still matches",
			"timestamp": 1705294800000
		},
		{
			"input": "Jané15 2024",
			"why": "and it does not separate the word from the number",
			"timestamp": 1705294800000
		},
		{
			"input": "Jaé 15 2024",
			"why": "two letters and an accent is not a month",
			"timestamp": null
		},
		{
			"input": "JANUARYé 15 2024",
			"why": "the accent is past the prefix",
			"timestamp": 1705294800000
		},
		{
			"input": "café 15 2024",
			"why": "a word of letters and an accent is garbage",
			"timestamp": null
		},
		{
			"input": "é 15 2024",
			"why": "a lone accent is a word, so 15 and 2024 have no month",
			"timestamp": null
		},
		{
			"input": "é Jan 15 2024",
			"why": "and before a month it is garbage that is skipped",
			"timestamp": 1705294800000
		},
		{
			"input": "Jan 15 2024 é",
			"why": "after the first number it is fatal like any word",
			"timestamp": null
		},
		{
			"input": "Jan 15 2024",
			"why": "a non-breaking space is a word character, not a space",
			"timestamp": 1705294800000
		},
		{
			"input": "Jan 15 2024 ",
			"why": "so a trailing one is a garbage word, and fatal",
			"timestamp": null
		},
		{
			"input": "Jan 15 2024 ",
			"why": "an ideographic space is the same",
			"timestamp": null
		},
		{
			"input": "Jan 15 2024",
			"why": "and so is a byte-order mark",
			"timestamp": null
		},
		{
			"input": "Jan 15 2024",
			"why": "a leading one joins the month and breaks it",
			"timestamp": null
		},
		{
			"input": "Jan 15 2024\u0001",
			"why": "a control character is below A, so it is neither a word nor fatal",
			"timestamp": 1705294800000
		},
		{
			"input": "Jan 15 2024@",
			"why": "nor is a symbol below A",
			"timestamp": 1705294800000
		},
		{
			"input": "Jan 15 2024_",
			"why": "an underscore is above A, so it is a word and is fatal",
			"timestamp": null
		},
		{
			"input": "🗓 Jan 15 2024",
			"why": "an astral character is a word, and garbage",
			"timestamp": 1705294800000
		},
		{
			"input": "İJan 15 2024",
			"why": "a dotted capital I joins the month and breaks the prefix",
			"timestamp": null
		},
		{
			"input": "Janİ 15 2024",
			"why": "past the prefix it changes nothing",
			"timestamp": 1705294800000
		},
		{
			"input": "İ Jan 15 2024",
			"why": "and alone it is a garbage word",
			"timestamp": 1705294800000
		},
		{
			"input": "KJan 15 2024",
			"why": "a kelvin sign is the same, and lowercases shorter",
			"timestamp": null
		},
		{
			"input": "Kan 15 2024",
			"why": "and is not the letter k for this",
			"timestamp": null
		},
		{
			"input": "Jan 15 2024K",
			"why": "trailing, it is a word and is fatal",
			"timestamp": null
		},
		{
			"input": "Ja🗓 15 2024",
			"why": "joined to two letters it is still not a month",
			"timestamp": null
		},
		{
			"input": "Jan 15 2024 (a comment)",
			"why": "parenthesised text is a comment",
			"timestamp": 1705294800000
		},
		{
			"input": "Jan 15 2024 (unclosed",
			"why": "an unclosed comment is still a comment",
			"timestamp": 1705294800000
		},
		{
			"input": "Jan 32 2024",
			"why": "day 32 is a refusal",
			"timestamp": null
		},
		{
			"input": "Jan 0 2024",
			"why": "day 0 is a refusal",
			"timestamp": null
		},
		{
			"input": "1 2 2024",
			"why": "three bare numbers, US ordering",
			"timestamp": 1704171600000
		},
		{
			"input": "2024 1 2",
			"why": "year first when it cannot be a month",
			"timestamp": 1704171600000
		},
		{
			"input": "1-2-2024",
			"why": "dashes",
			"timestamp": 1704171600000
		},
		{
			"input": "2024-1-2",
			"why": "unpadded — not the ISO grammar, so the legacy parser takes it",
			"timestamp": 1704171600000
		},
		{
			"input": "2024/01/15",
			"why": "slashes, year first",
			"timestamp": 1705294800000
		},
		{
			"input": "01/15/2024",
			"why": "slashes, US ordering",
			"timestamp": 1705294800000
		},
		{
			"input": "2024.01.15",
			"why": "dots",
			"timestamp": 1705294800000
		},
		{
			"input": "15.01.2024",
			"why": "dots, day first — a refusal",
			"timestamp": null
		},
		{
			"input": "Jan 15 2024 10:30",
			"why": "hours and minutes only",
			"timestamp": 1705332600000
		},
		{
			"input": "Jan 15 2024 10:30:45.5",
			"why": "a fractional second",
			"timestamp": 1705332645500
		},
		{
			"input": "Jan 15 2024 1:30 PM",
			"why": "pm shifts by twelve",
			"timestamp": 1705343400000
		},
		{
			"input": "Jan 15 2024 1:30 pm",
			"why": "lowercase",
			"timestamp": 1705343400000
		},
		{
			"input": "Jan 15 2024 12:30 AM",
			"why": "twelve am is midnight",
			"timestamp": 1705296600000
		},
		{
			"input": "Jan 15 2024 12:30 PM",
			"why": "twelve pm is noon",
			"timestamp": 1705339800000
		},
		{
			"input": "Jan 15 2024 13:30 PM",
			"why": "pm past twelve is a refusal",
			"timestamp": null
		},
		{
			"input": "Jan 15 2024 10:30:45 UT",
			"why": "UT is an offset of zero",
			"timestamp": 1705314645000
		},
		{
			"input": "Jan 15 2024 10:30:45 Z",
			"why": "so is Z",
			"timestamp": 1705314645000
		},
		{
			"input": "Jan 15 2024 10:30:45 +05:30",
			"why": "a bare offset with a colon",
			"timestamp": 1705294845000
		},
		{
			"input": "Jan 15 2024 10:30:45 +0530",
			"why": "and without",
			"timestamp": 1705294845000
		},
		{
			"input": "Jan 15 2024 10:30:45 +05",
			"why": "hours only",
			"timestamp": 1705296645000
		},
		{
			"input": "Jan 15 2024 10:30:45 GMT+5",
			"why": "a single-digit offset",
			"timestamp": 1705296645000
		},
		{
			"input": "Jan 15 2024 10:30:45 GMT+05:30",
			"why": "GMT with a colon offset",
			"timestamp": 1705294845000
		},
		{
			"input": "1/15/99 10:30:45",
			"why": "a two-digit year, 50 and up, is 1900s",
			"timestamp": 916414245000
		},
		{
			"input": "1/15/50 10:30:45",
			"why": "the boundary, below",
			"timestamp": -629886555000
		},
		{
			"input": "1/15/49 10:30:45",
			"why": "the boundary, above",
			"timestamp": 2494337445000
		},
		{
			"input": "1/15/24 10:30:45",
			"why": "under 50 is 2000s",
			"timestamp": 1705332645000
		},
		{
			"input": "1/15/00 10:30:45",
			"why": "and zero",
			"timestamp": 947950245000
		},
		{
			"input": "Tue Mar 05 2024",
			"why": "a date with no time at all",
			"timestamp": 1709614800000
		},
		{
			"input": "Mon, 15 Jan 2024",
			"why": "rfc2822 without the time",
			"timestamp": 1705294800000
		},
		{
			"input": "2024",
			"why": "a bare year is the ISO grammar, so UTC",
			"timestamp": 1704067200000
		},
		{
			"input": "2024-01",
			"why": "a year and month, also UTC",
			"timestamp": 1704067200000
		},
		{
			"input": "January 2024",
			"why": "the same month by name is legacy, so local",
			"timestamp": 1704085200000
		},
		{
			"input": "2024-001",
			"why": "not an ordinal date — read as a year and a number",
			"timestamp": 1704085200000
		},
		{
			"input": "not a date",
			"why": "a refusal",
			"timestamp": null
		},
		{
			"input": "",
			"why": "the empty string is a refusal",
			"timestamp": null
		},
		{
			"input": "now",
			"why": "not a thing V8 knows",
			"timestamp": null
		},
		{
			"input": "2024-W03",
			"why": "week dates are not supported",
			"timestamp": null
		},
		{
			"input": "2024-W03-1",
			"why": "nor with a day of the week",
			"timestamp": null
		},
		{
			"input": "2024-015",
			"why": "an ordinal date is a refusal once the number cannot be a month",
			"timestamp": null
		},
		{
			"input": "2024-060",
			"why": "and another",
			"timestamp": null
		},
		{
			"input": "20240115",
			"why": "basic-format ISO is not supported",
			"timestamp": null
		},
		{
			"input": "20240115T103045Z",
			"why": "nor the basic date-time form",
			"timestamp": null
		},
		{
			"input": "20240115T103045",
			"why": "nor without a zone",
			"timestamp": null
		},
		{
			"input": "10:30:45",
			"why": "a time with no date is a refusal",
			"timestamp": null
		},
		{
			"input": "T10:30:45",
			"why": "nor with a T",
			"timestamp": null
		},
		{
			"input": "2024-01-15T10:30",
			"why": "minutes without seconds",
			"timestamp": 1705332600000
		},
		{
			"input": "2024-01-15 10:30",
			"why": "the same with a space",
			"timestamp": 1705332600000
		},
		{
			"input": "2024-01-15t10:30:45z",
			"why": "lowercase t and z",
			"timestamp": 1705314645000
		},
		{
			"input": "0024-01-15",
			"why": "a four-digit ISO year of 24 is the year 24",
			"timestamp": -61408627200000
		},
		{
			"input": "0099-12-31T00:00:00Z",
			"why": "and 99 is the year 99",
			"timestamp": -59011545600000
		},
		{
			"input": "0024-1-15",
			"why": "the same year unpadded is legacy, and becomes 2024",
			"timestamp": null
		},
		{
			"input": "2024-01-15T10:30:45 GMT",
			"why": "an ISO prefix and a legacy zone",
			"timestamp": null
		},
		{
			"input": "2024-01-15T10:30:45Z extra",
			"why": "trailing garbage after a complete ISO string",
			"timestamp": null
		},
		{
			"input": "2024-01-15T10:30:45+05:30 (India)",
			"why": "a comment after a complete one",
			"timestamp": null
		},
		{
			"input": "2024-03-10 01:59:59",
			"why": "the last second before the gap",
			"timestamp": 1710053999000
		},
		{
			"input": "2024-03-10 02:30:00",
			"why": "inside the gap — an hour that does not exist",
			"timestamp": 1710055800000
		},
		{
			"input": "2024-03-10 03:00:00",
			"why": "the first second after the gap",
			"timestamp": 1710054000000
		},
		{
			"input": "2024-11-03 00:30:00",
			"why": "before the fold",
			"timestamp": 1730608200000
		},
		{
			"input": "2024-11-03 01:30:00",
			"why": "inside the fold — an hour that happens twice",
			"timestamp": 1730611800000
		},
		{
			"input": "2024-11-03 02:30:00",
			"why": "after the fold",
			"timestamp": 1730619000000
		},
		{
			"input": "2024-03-10T02:30:00Z",
			"why": "the same instant with a zone is unaffected",
			"timestamp": 1710037800000
		}
	]
}