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
A proxy function currently looks something like the following:
function fn() { if (__function[0].length > 0) { __function[0] = eval(__function[0]); } return __function[0].apply(this, arguments); }
The eval statement here will prevent V8 from doing optimisation on the function.
eval
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
A proxy function currently looks something like the following:
The
eval
statement here will prevent V8 from doing optimisation on the function.The text was updated successfully, but these errors were encountered: