🐊Putout plugin adds ability to find and 'split-call-with-destructuring' statement
npm install @putout/plugin-split-call-with-destructuring[NPMIMGURL]: https://img.shields.io/npm/v/@putout/plugin-split-call-with-destructuring.svg?style=flat&longCache=true
[NPMURL]: https://npmjs.org/package/@putout/plugin-split-call-with-destructuring "npm"
🐊Putout plugin adds ability to split call with destructuring. Merged with @putout/plugin-destructuring.
Checkout in 🐊Putout Editor.
```
npm i @putout/plugin-split-call-with-destructuring
`json`
{
"rules": {
"split-call-with-destructuring": "on"
}
}
`js`
console.log('hello')({uid} = path.scope);
console.log('hello')[uid] = path.scope;
`js
console.log('hello');
({uid} = path.scope);
console.log('hello');
[uid] = path.scope;
``
MIT