Commits
Click on a commit to change the comparison rangefeat(minifier): remove no-op function call (#12373)
Remove function calls where the function is empty:
* `function foo() {} foo()` -> ``
* `var foo = () => {}; foo() -> ``
* `function foo() {} x = foo(a, b)` -> `x = (a, b, void 0)`
closes #11469