@putout/plugin-split-call-with-destructuring
v2.0.1
Published
šPutout plugin adds ability to find and 'split-call-with-destructuring' statement
Maintainers
Readme
@putout/plugin-split-call-with-destructuring 
šPutout plugin adds ability to split call with destructuring. Merged with @putout/plugin-destructuring.
Checkout in šPutout Editor.
Install
npm i @putout/plugin-split-call-with-destructuringRule
{
"rules": {
"split-call-with-destructuring": "on"
}
}ā Example of incorrect code
console.log('hello')({uid} = path.scope);
console.log('hello')[uid] = path.scope;ā Example of correct code
console.log('hello');
({uid} = path.scope);
console.log('hello');
[uid] = path.scope;License
MIT
