diff options
author | Colin Ihrig <cjihrig@gmail.com> | 2022-11-09 08:14:25 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-09 14:14:25 +0100 |
commit | 0500aa1f71859772fba7c581e8cb2c1c4804dc2a (patch) | |
tree | 3b911502e3645455b0c94714ff2e2753f8058464 /runtime/js/90_deno_ns.js | |
parent | f946806868ad37624ae96d1b31b882216bb80000 (diff) |
feat: stabilize Deno.systemMemoryInfo() (#16445)
Diffstat (limited to 'runtime/js/90_deno_ns.js')
-rw-r--r-- | runtime/js/90_deno_ns.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/js/90_deno_ns.js b/runtime/js/90_deno_ns.js index a0587c7f6..8111698be 100644 --- a/runtime/js/90_deno_ns.js +++ b/runtime/js/90_deno_ns.js @@ -121,13 +121,13 @@ unrefTimer: __bootstrap.timers.unrefTimer, osRelease: __bootstrap.os.osRelease, hostname: __bootstrap.os.hostname, + systemMemoryInfo: __bootstrap.os.systemMemoryInfo, networkInterfaces: __bootstrap.os.networkInterfaces, consoleSize: __bootstrap.tty.consoleSize, }; __bootstrap.denoNsUnstable = { DiagnosticCategory: __bootstrap.diagnostics.DiagnosticCategory, - systemMemoryInfo: __bootstrap.os.systemMemoryInfo, gid: __bootstrap.os.gid, uid: __bootstrap.os.uid, listenDatagram: __bootstrap.net.listenDatagram, |