This polyfill adds a non-spec `PlainTime.prototype.toZonedDateTime`. This function is incompatible with the signature of any other `toZonedDateTime` function, meaning that this code breaks with the polyfill: ```ts // value being any temporal object if ('toZonedDateTime' in value) value.toZonedDateTime('UTC').epochMilliseconds; ```