diff --git a/polyfill/lib/ecmascript.mjs b/polyfill/lib/ecmascript.mjs index 1a6a5ace2c..6292f2118b 100644 --- a/polyfill/lib/ecmascript.mjs +++ b/polyfill/lib/ecmascript.mjs @@ -1892,11 +1892,6 @@ export const ES = ObjectAssign({}, ES2020, { const TemporalTimeZone = GetIntrinsic('%Temporal.TimeZone%'); return new TemporalTimeZone(timeZone); }, - TimeZoneCompare: (one, two) => { - const tz1 = ES.ToString(one); - const tz2 = ES.ToString(two); - return tz1 < tz2 ? -1 : tz1 > tz2 ? 1 : 0; - }, TimeZoneEquals: (one, two) => { const tz1 = ES.ToString(one); const tz2 = ES.ToString(two);