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
Hey, a lot of the performance optimizations here assume things about V8 that are no longer true with TurboFan.
This issue is to track and remove those eventually.
The text was updated successfully, but these errors were encountered:
Yes, we need to revisit some micro optimizations once TF+I lands (8.2.0?). For example we can use Object.create(null) directly now instead of
Object.create(null)
function Storage() {} Storage.prototype = Object.create(null);
which is nice as it will remove some feature detection code reducing the library size.
If you want to help tracing and removing dead optimizations please do, it will be greatly appreciated :)
Sorry, something went wrong.
No branches or pull requests
Hey, a lot of the performance optimizations here assume things about V8 that are no longer true with TurboFan.
This issue is to track and remove those eventually.
The text was updated successfully, but these errors were encountered: