2.1.0 β€’ Published 2 years ago

@putout/plugin-remove-useless-operand v2.1.0

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

@putout/plugin-remove-useless-operand NPM version

The increment operator (++) adds one to its operand and returns a value.

The addition assignment operator (+=) adds the value of the right operand to a variable and assigns the result to the variable.

(c) MDN

🐊Putout plugin adds ability to remove useless operand.

Install

npm i @putout/plugin-remove-useless-operand

Rule

{
    "rules": {
        "remove-useless-operand": "on"
    }
}

❌ Example of incorrect code

a = a + b;
a = b + a;
b += 1;

βœ… Example of correct code

a += b;
++b;

License

MIT