summaryrefslogtreecommitdiff
path: root/ext/node/polyfills/tty.js
diff options
context:
space:
mode:
Diffstat (limited to 'ext/node/polyfills/tty.js')
-rw-r--r--ext/node/polyfills/tty.js6
1 files changed, 2 insertions, 4 deletions
diff --git a/ext/node/polyfills/tty.js b/ext/node/polyfills/tty.js
index eae1db2d9..b2260a47e 100644
--- a/ext/node/polyfills/tty.js
+++ b/ext/node/polyfills/tty.js
@@ -1,12 +1,10 @@
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
-import { core, primordials } from "ext:core/mod.js";
+import { primordials } from "ext:core/mod.js";
const {
Error,
} = primordials;
-const {
- op_is_terminal,
-} = core.ensureFastOps(true);
+import { op_is_terminal } from "ext:core/ops";
import { ERR_INVALID_FD } from "ext:deno_node/internal/errors.ts";
import { LibuvStreamWrap } from "ext:deno_node/internal_binding/stream_wrap.ts";