mirror of
https://github.com/denoland/deno.git
synced 2024-10-31 09:14:20 -04:00
8c026dab92
Co-authored-by: David Sherret <dsherret@gmail.com>
7 lines
224 B
Rust
7 lines
224 B
Rust
use deno_runtime::ops::tty::ConsoleSize;
|
|
|
|
/// Gets the console size.
|
|
pub fn console_size() -> Option<ConsoleSize> {
|
|
let stderr = &deno_runtime::ops::io::STDERR_HANDLE;
|
|
deno_runtime::ops::tty::console_size(stderr).ok()
|
|
}
|