@putout/plugin-remove-unused-for-of-variables
v3.0.3
Published
šPutout plugin adds ability to find and remove unused for-of variables
Maintainers
Readme
@putout/plugin-remove-unused-for-of-variables 
šPutout plugin adds ability to find and remove unused for-of variables. Merged with @putout/plugin-for-of.
Install
npm i @putout/plugin-remove-unused-for-of-variables -DRule
{
"rules": {
"remove-unused-for-of-variables": "on"
}
}ā Example of incorrect code
for (const {a, b} of c) {
console.log(a);
}ā Example of correct code
for (const {a} of c) {
console.log(a);
}License
MIT
