Skip to content

v4.2.3

Compare
Choose a tag to compare
@mysticatea mysticatea released this 03 Oct 08:16
· 97 commits to master since this release
v4.2.3
dc0c866

Bug fixes

  • dc212fb fixed no-useless-rest-spread rule to not fix arrays which have holes automatically because it changes the behavior in an unintuitive manner.
> [,,, 1].forEach(v => console.log(v))
1

> [...[,,,], 1].forEach(v => console.log(v))
undefined
undefined
undefined
1

>