🐊Putout plugin adds ability to simplify assignment
npm install @putout/plugin-simplify-assignment[NPMIMGURL]: https://img.shields.io/npm/v/@putout/plugin-simplify-assignment.svg?style=flat&longCache=true
[NPMURL]: https://npmjs.org/package/@putout/plugin-simplify-assignment "npm"
🐊Putout plugin adds ability to simplify assignment.
Merged with @putout/plugin-assignment.
```
npm i @putout/plugin-simplify-assignment -D
`json`
{
"rules": {
"simplify-assignment": "on"
}
}
`js
const {a} = {
a: 5,
};
const [b] = [5];
const c = (() => 7)();
`
`js``
const a = 5;
const b = 5;
const c = 7;
MIT