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
import {Temporal} from "proposal-temporal/lib/index.mjs";
...
return (new Temporal.Instant(123)).toZonedDateTimeISO("Europe/Berlin");
// TypeError: cannot convert number to bigint
...
return (new Temporal.Instant(BigInt(123))).toZonedDateTimeISO("Europe/Berlin");
// TypeError: use compare() or equals() to compare Temporal.ZonedDateTime