summaryrefslogtreecommitdiff
path: root/cli/util/console.rs
blob: 74e6928a28a6ac4db6a4d893a028d900341d860c (plain)
1
2
3
4
5
6
7
8
9
// Copyright 2018-2024 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()
}