feat: stabilize Deno.uid() and Deno.gid() (#16424)

Closes https://github.com/denoland/deno_std/issues/2791
This commit is contained in:
Colin Ihrig 2022-11-09 09:46:50 -05:00 committed by GitHub
parent 0500aa1f71
commit c36496b3bb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 30 additions and 38 deletions

View file

@ -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,