summaryrefslogtreecommitdiff
path: root/runtime/js/90_deno_ns.js
diff options
context:
space:
mode:
authorBartek Iwańczuk <biwanczuk@gmail.com>2024-01-15 01:26:57 +0100
committerGitHub <noreply@github.com>2024-01-15 01:26:57 +0100
commit5143b9e7d3f72e6cc23f8381295df17ff1235f53 (patch)
tree6c8a59aa1fd0feb23601e009bde04c03c66e6593 /runtime/js/90_deno_ns.js
parentf46c03d6b4a59f5f1771cb3fbec15fe034b81dde (diff)
feat(unstable): add Temporal API support (#21738)
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 <biwanczuk@gmail.com> Co-authored-by: David Sherret <dsherret@gmail.com> Co-authored-by: Kenta Moriuchi <moriken@kimamass.com>
Diffstat (limited to 'runtime/js/90_deno_ns.js')
-rw-r--r--runtime/js/90_deno_ns.js7
1 files changed, 4 insertions, 3 deletions
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 = {};