Skip to content

v16.7.0

Compare
Choose a tag to compare
@EvgenyOrekhov 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);
}