overlookmotel f166b7ae58
Fix plugin-transform-block-scoping const violations (#13248)
* Fix plugin-transform-block-scoping const violations

Fixes #13245

* Replace `a++` with `+a` where const violation

* Remove assignment where const violation

* Remove assignment for `&&=`, `||=`, `??=` where const violation

* Shorten test
2021-05-03 11:47:25 -04:00

8 lines
111 B
JavaScript

for (const i = 0; i < 3; i = i + 1) {
console.log(i);
}
for (const j = 0; j < 3; j++) {
console.log(j);
}