v16.7.0
EvgenyOrekhov
released this
24 Mar 13:49
·
1194 commits
to master
since this release
@putout/plugin-split-nested-destructuring
now supports function parameters:
// before:
function f({ a: { b } }) {
console.log(b);
}
// after:
function f({ a }) {
const { b } = a;
console.log(b);
}