mirror of
https://github.com/denoland/deno
synced 2024-11-05 18:45:24 +00:00
fix(node): remove use of non existing FunctionPrototypeApply
primordial (#21986)
Fixes #21978
This commit is contained in:
parent
59f419bf41
commit
47232f8a41
1 changed files with 3 additions and 3 deletions
|
@ -26,8 +26,8 @@
|
|||
import { primordials } from "ext:core/mod.js";
|
||||
const {
|
||||
ArrayPrototypePop,
|
||||
ReflectApply,
|
||||
Error,
|
||||
FunctionPrototypeApply,
|
||||
FunctionPrototypeBind,
|
||||
ObjectDefineProperties,
|
||||
ObjectGetOwnPropertyDescriptors,
|
||||
|
@ -112,10 +112,10 @@ function callbackify<ResultT>(
|
|||
throw new NodeInvalidArgTypeError("last");
|
||||
}
|
||||
const cb = (...args: unknown[]) => {
|
||||
FunctionPrototypeApply(maybeCb, this, args);
|
||||
ReflectApply(maybeCb, this, args);
|
||||
};
|
||||
PromisePrototypeThen(
|
||||
FunctionPrototypeApply(this, args),
|
||||
ReflectApply(this, args),
|
||||
(ret: unknown) => {
|
||||
nextTick(FunctionPrototypeBind(cb, this, null, ret));
|
||||
},
|
||||
|
|
Loading…
Reference in a new issue