Commits
Click on a commit to change the comparison rangefix(minifier): handle __proto__ when inlining single-use variables (#13926)
```js
function wrapper() { var __proto__ = []; return { __proto__ } }
```
was compressed to
```js
function wrapper() { return { [] } }
```
. This PR fixes this bug.2 months ago
by sapphi-red