mirror of
https://github.com/denoland/deno.git
synced 2024-12-23 07:44:48 -05:00
22 lines
451 B
JavaScript
22 lines
451 B
JavaScript
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
|
|
import { core, primordials } from "ext:core/mod.js";
|
|
const {
|
|
op_console_size,
|
|
op_isatty,
|
|
} = core.ensureFastOps();
|
|
const {
|
|
Uint32Array,
|
|
} = primordials;
|
|
|
|
const size = new Uint32Array(2);
|
|
|
|
function consoleSize() {
|
|
op_console_size(size);
|
|
return { columns: size[0], rows: size[1] };
|
|
}
|
|
|
|
function isatty(rid) {
|
|
return op_isatty(rid);
|
|
}
|
|
|
|
export { consoleSize, isatty };
|