Skip to content

Commit d1230c7

Browse files
committed
Polyfill: Fix Meiji era start date
This was based on erroneous data in CLDR. See https://unicode-org.atlassian.net/browse/CLDR-11375
1 parent 7d12ce1 commit d1230c7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

polyfill/lib/calendar.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1881,7 +1881,7 @@ const helperJapanese = ObjectAssign(
18811881
{ code: 'heisei', isoEpoch: { year: 1989, month: 1, day: 8 }, anchorEpoch: { year: 1989, month: 1, day: 8 } },
18821882
{ code: 'showa', isoEpoch: { year: 1926, month: 12, day: 25 }, anchorEpoch: { year: 1926, month: 12, day: 25 } },
18831883
{ code: 'taisho', isoEpoch: { year: 1912, month: 7, day: 30 }, anchorEpoch: { year: 1912, month: 7, day: 30 } },
1884-
{ code: 'meiji', isoEpoch: { year: 1868, month: 9, day: 8 }, anchorEpoch: { year: 1868, month: 9, day: 8 } },
1884+
{ code: 'meiji', isoEpoch: { year: 1868, month: 10, day: 23 }, anchorEpoch: { year: 1868, month: 10, day: 23 } },
18851885
{ code: 'ce', isoEpoch: { year: 1, month: 1, day: 1 } },
18861886
{ code: 'bce', reverseOf: 'ce' }
18871887
]),

0 commit comments

Comments
 (0)