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/polyfills/util.ts | |
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/polyfills/util.ts')
-rw-r--r-- | ext/node/polyfills/util.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/node/polyfills/util.ts b/ext/node/polyfills/util.ts index 3d449f8dc..0c150301a 100644 --- a/ext/node/polyfills/util.ts +++ b/ext/node/polyfills/util.ts @@ -28,7 +28,7 @@ const { } = primordials; import { promisify } from "ext:deno_node/internal/util.mjs"; -import { callbackify } from "ext:deno_node/_util/_util_callbackify.ts"; +import { callbackify } from "ext:deno_node/_util/_util_callbackify.js"; import { debuglog } from "ext:deno_node/internal/util/debuglog.ts"; import { format, |