Commits
Click on a commit to change the comparison rangefix(minifier): do not remove non-plain empty functions (#12573)
Do not remove empty function calls if the function is async or generator or args can cause type error.
From test262:
```js
function fn({}) {}
assert.throws(TypeError, function() {
fn(null);
});
```