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
Please add "High compliancy" mode as in Babel (checkbox here https://babeljs.io/repl/). Currently this ES6 code
if (true) { console.log(typeof value); // ReferenceError! let value = "blue"; // Temporal Dead Zone }
is transpiled to
"use strict"; if (true) { console.log(typeof value); // ReferenceError! var value = "blue"; // Temporal Dead Zone }
and does not throw ReferenceError.
ReferenceError
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Please add "High compliancy" mode as in Babel (checkbox here https://babeljs.io/repl/). Currently this ES6 code
is transpiled to
and does not throw
ReferenceError
.The text was updated successfully, but these errors were encountered: