From 5143b9e7d3f72e6cc23f8381295df17ff1235f53 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartek=20Iwa=C5=84czuk?= Date: Mon, 15 Jan 2024 01:26:57 +0100 Subject: feat(unstable): add Temporal API support (#21738) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This commit adds support for [Stage 3 Temporal API proposal](https://tc39.es/proposal-temporal/docs/). The API is available when `--unstable-temporal` flag is passed. --------- Signed-off-by: Bartek IwaƄczuk Co-authored-by: David Sherret Co-authored-by: Kenta Moriuchi --- runtime/js/90_deno_ns.js | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'runtime/js/90_deno_ns.js') diff --git a/runtime/js/90_deno_ns.js b/runtime/js/90_deno_ns.js index e196fd104..97b4a9531 100644 --- a/runtime/js/90_deno_ns.js +++ b/runtime/js/90_deno_ns.js @@ -167,9 +167,10 @@ const unstableIds = { http: 5, kv: 6, net: 7, - unsafeProto: 8, - webgpu: 9, - workerOptions: 10, + temporal: 8, + unsafeProto: 9, + webgpu: 10, + workerOptions: 11, }; const denoNsUnstableById = {}; -- cgit v1.2.3