From e522f4b65a3439030506733b104498f21422ede0 Mon Sep 17 00:00:00 2001 From: Kenta Moriuchi Date: Wed, 11 Sep 2024 06:36:43 +0900 Subject: BREAKING(temporal/unstable): Remove obsoleted Temporal APIs part 2 (#25505) Mainly I removed `Temporal.Calendar` and `Temporal.TimeZone` and replaced them to APIs that handle calendar and timezone as strings. https://github.com/tc39/proposal-temporal/pull/2925 Related #24836 --- ext/console/01_console.js | 8 -------- 1 file changed, 8 deletions(-) (limited to 'ext/console/01_console.js') diff --git a/ext/console/01_console.js b/ext/console/01_console.js index 15c5c837b..761368b57 100644 --- a/ext/console/01_console.js +++ b/ext/console/01_console.js @@ -844,14 +844,6 @@ function formatRaw(ctx, value, recurseTimes, typedArray, proxyDetails) { ObjectPrototypeIsPrototypeOf( globalThis.Temporal.Duration.prototype, value, - ) || - ObjectPrototypeIsPrototypeOf( - globalThis.Temporal.TimeZone.prototype, - value, - ) || - ObjectPrototypeIsPrototypeOf( - globalThis.Temporal.Calendar.prototype, - value, ) ) ) { -- cgit v1.2.3