Skip to content

v4.0.0

Latest
Compare
Choose a tag to compare
@bahaagalal bahaagalal released this 22 Apr 12:10
· 15 commits to master since this release

4.0.0 (2020-04-22)

Features

BREAKING CHANGES

  • trying to invoke a constructor with new keyword without parentheses will now be reported as an error
// bad
const user = new User;

// good
const user = new User();