summaryrefslogtreecommitdiff
path: root/cli/util/console.rs
blob: dc37138b1b95679d522da967133b6333f96ff448 (plain)
1
2
3
4
5
6
7
8
9
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.

use deno_runtime::ops::tty::ConsoleSize;

/// Gets the console size.
pub fn console_size() -> Option<ConsoleSize> {
  let stderr = &deno_runtime::deno_io::STDERR_HANDLE;
  deno_runtime::ops::tty::console_size(stderr).ok()
}