summaryrefslogtreecommitdiff
path: root/runtime/js/90_deno_ns.js
diff options
context:
space:
mode:
authorColin Ihrig <cjihrig@gmail.com>2022-11-09 09:46:50 -0500
committerGitHub <noreply@github.com>2022-11-09 09:46:50 -0500
commitc36496b3bb9a25640d209d9ac7b2c201bfdc99fb (patch)
tree6a1edafba777cf158104ba4d4a8ac3e19adfe4d0 /runtime/js/90_deno_ns.js
parent0500aa1f71859772fba7c581e8cb2c1c4804dc2a (diff)
feat: stabilize Deno.uid() and Deno.gid() (#16424)
Closes https://github.com/denoland/deno_std/issues/2791
Diffstat (limited to 'runtime/js/90_deno_ns.js')
-rw-r--r--runtime/js/90_deno_ns.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/js/90_deno_ns.js b/runtime/js/90_deno_ns.js
index 8111698be..64653d469 100644
--- a/runtime/js/90_deno_ns.js
+++ b/runtime/js/90_deno_ns.js
@@ -124,12 +124,12 @@
systemMemoryInfo: __bootstrap.os.systemMemoryInfo,
networkInterfaces: __bootstrap.os.networkInterfaces,
consoleSize: __bootstrap.tty.consoleSize,
+ gid: __bootstrap.os.gid,
+ uid: __bootstrap.os.uid,
};
__bootstrap.denoNsUnstable = {
DiagnosticCategory: __bootstrap.diagnostics.DiagnosticCategory,
- gid: __bootstrap.os.gid,
- uid: __bootstrap.os.uid,
listenDatagram: __bootstrap.net.listenDatagram,
umask: __bootstrap.fs.umask,
HttpClient: __bootstrap.fetch.HttpClient,