summaryrefslogtreecommitdiff
path: root/ext/node/polyfills/internal/readline/emitKeypressEvents.mjs
diff options
context:
space:
mode:
Diffstat (limited to 'ext/node/polyfills/internal/readline/emitKeypressEvents.mjs')
-rw-r--r--ext/node/polyfills/internal/readline/emitKeypressEvents.mjs4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/node/polyfills/internal/readline/emitKeypressEvents.mjs b/ext/node/polyfills/internal/readline/emitKeypressEvents.mjs
index 145dd18ff..6a68e0f67 100644
--- a/ext/node/polyfills/internal/readline/emitKeypressEvents.mjs
+++ b/ext/node/polyfills/internal/readline/emitKeypressEvents.mjs
@@ -25,13 +25,13 @@
import { charLengthAt, CSI, emitKeys } from "ext:deno_node/internal/readline/utils.mjs";
import { kSawKeyPress } from "ext:deno_node/internal/readline/symbols.mjs";
-import { clearTimeout, setTimeout } from "ext:deno_node/timers.ts";
+import { clearTimeout, setTimeout } from "node:timers";
const {
kEscape,
} = CSI;
-import { StringDecoder } from "ext:deno_node/string_decoder.ts";
+import { StringDecoder } from "node:string_decoder";
const KEYPRESS_DECODER = Symbol("keypress-decoder");
const ESCAPE_DECODER = Symbol("escape-decoder");