diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2022-10-26 00:23:21 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-26 00:23:21 +0200 |
commit | ab0c33ebf83f25b526f732e3e07de5e75a6e69bb (patch) | |
tree | b4866d8dd8ae8998429e2fdc5375c0995d92be21 /cli/diagnostics.rs | |
parent | af62e0833dbb23ac0af674b57e5938be97ad57c8 (diff) |
feat: Stabilize Deno.consoleSize() API (#15933)
This commit stabilizes "Deno.consoleSize()" API.
There is one change compared to previous unstable API,
in that the API doesn't accept any arguments. Console size
is established by querying syscalls for stdio streams at fd
0, 1 and 2.
Diffstat (limited to 'cli/diagnostics.rs')
-rw-r--r-- | cli/diagnostics.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/cli/diagnostics.rs b/cli/diagnostics.rs index 0fa35839e..7c27b62e5 100644 --- a/cli/diagnostics.rs +++ b/cli/diagnostics.rs @@ -35,7 +35,6 @@ const UNSTABLE_DENO_PROPS: &[&str] = &[ "addSignalListener", "bench", "connect", - "consoleSize", "createHttpClient", "kill", "listen", |