We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
bindCallback
On operators with thisArg, we're using a util/helper called bindCallback. It has two problems:
thisArg
fromCallback
Solution:
I think we should remove this everywhere and just use apply or call where appropriate.
apply
call
The text was updated successfully, but these errors were encountered:
So for some of operator still has thisArg (in #878) will directly apply context instead of using bindCallback?
Sorry, something went wrong.
right... if you still need to have thisArg, it should just use apply or call directly.
f647eb6
This thread has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs.
benlesh
No branches or pull requests
On operators with
thisArg
, we're using a util/helper calledbindCallback
. It has two problems:bindCallback
method (formerlyfromCallback
).Solution:
I think we should remove this everywhere and just use
apply
orcall
where appropriate.The text was updated successfully, but these errors were encountered: