mirror of
https://github.com/denoland/deno.git
synced 2024-11-21 15:04:11 -05:00
fix: finish stabilizing Deno.osRelease() (#16447)
Fixes: https://github.com/denoland/deno/issues/16446
This commit is contained in:
parent
c27942fee4
commit
1376c6932f
2 changed files with 1 additions and 2 deletions
|
@ -40,7 +40,6 @@ const UNSTABLE_DENO_PROPS: &[&str] = &[
|
|||
"listen",
|
||||
"listenDatagram",
|
||||
"dlopen",
|
||||
"osRelease",
|
||||
"ppid",
|
||||
"removeSignalListener",
|
||||
"shutdown",
|
||||
|
|
|
@ -119,13 +119,13 @@
|
|||
removeSignalListener: __bootstrap.signals.removeSignalListener,
|
||||
refTimer: __bootstrap.timers.refTimer,
|
||||
unrefTimer: __bootstrap.timers.unrefTimer,
|
||||
osRelease: __bootstrap.os.osRelease,
|
||||
hostname: __bootstrap.os.hostname,
|
||||
consoleSize: __bootstrap.tty.consoleSize,
|
||||
};
|
||||
|
||||
__bootstrap.denoNsUnstable = {
|
||||
DiagnosticCategory: __bootstrap.diagnostics.DiagnosticCategory,
|
||||
osRelease: __bootstrap.os.osRelease,
|
||||
systemMemoryInfo: __bootstrap.os.systemMemoryInfo,
|
||||
networkInterfaces: __bootstrap.os.networkInterfaces,
|
||||
gid: __bootstrap.os.gid,
|
||||
|
|
Loading…
Reference in a new issue