From 02c65fad45898b79ef9614319061d19d24cfb9ce Mon Sep 17 00:00:00 2001 From: Divy Srivastava Date: Thu, 1 Feb 2024 08:51:10 +0530 Subject: fix(node): `util.callbackify` (#22200) Fixes https://github.com/denoland/deno/issues/22180 Matches the Node.js implementation more closely. Removed types, they do not help just make it harder to debug with stack traces. --- ext/node/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ext/node/lib.rs') diff --git a/ext/node/lib.rs b/ext/node/lib.rs index de56285fd..9d92f7663 100644 --- a/ext/node/lib.rs +++ b/ext/node/lib.rs @@ -386,7 +386,7 @@ deno_core::extension!(deno_node, "_stream.mjs", "_tls_common.ts", "_tls_wrap.ts", - "_util/_util_callbackify.ts", + "_util/_util_callbackify.js", "_util/asserts.ts", "_util/async.ts", "_util/os.ts", -- cgit v1.2.3