diff options
| author | Divy Srivastava <dj.srivastava23@gmail.com> | 2024-02-01 08:51:10 +0530 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-02-01 08:51:10 +0530 |
| commit | 02c65fad45898b79ef9614319061d19d24cfb9ce (patch) | |
| tree | 4062aa5cfe9ed5e4a071ccb345089f7146248189 /ext/node/lib.rs | |
| parent | 4b7c6049ef9d40394eb823859c82cbf8d293430d (diff) | |
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.
Diffstat (limited to 'ext/node/lib.rs')
| -rw-r--r-- | ext/node/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
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", |
