Commits
Click on a commit to change the comparison rangefeat(minifier): rewrite `arguments` copy loops to spread syntax (#13114)
Reverse-transpile rest argument code generated by TypeScript and babel.
Example input:
```js
for (var e = arguments.length, r = Array(e), a = 0; a < e; a++)
r[a] = arguments[a];
```
output:
```js
var r = [...arguments];
```
It's a quite specific transform though.3 months ago
by sapphi-red