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
For example, the below code should not be converted to let/const:
var a = 1; var {a, b} = createObj();
Lebab understand that a is a repeated variable, but ignores the fact that b is declared together with it and attempts to convert it to const:
a
b
const
var a = 1; const {a, b} = createObj();
The text was updated successfully, but these errors were encountered:
No branches or pull requests
For example, the below code should not be converted to let/const:
Lebab understand that
a
is a repeated variable, but ignores the fact thatb
is declared together with it and attempts to convert it toconst
:The text was updated successfully, but these errors were encountered: