You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This PR fixes#1965:
1. For Intl.DateTimeFormat, sets `writeable: false` on `prototype`
because it's created using `function` (which has a writeable
`prototype`, unlike `class` which is not writeable).
2. For Temporal classes, there's a Babel bug that causes prototypes to
be writeable (babel/babel#2025) and this PR
works around it.
0 commit comments