compress arguments[index] (#2967)

- always replace with existing parameter
- only introduce new parameter if `keep_fargs` is disabled
This commit is contained in:
Alex Lam S.L
2018-03-02 11:22:09 +08:00
committed by GitHub
parent 38f2b4579f
commit a75a046abb
4 changed files with 155 additions and 7 deletions

View File

@@ -598,6 +598,9 @@ If you're using the `X-SourceMap` header instead, you can just omit `sourceMap.u
## Compress options
- `arguments` (default: `true`) -- replace `arguments[index]` with function
parameter name whenever possible.
- `booleans` (default: `true`) -- various optimizations for boolean context,
for example `!!a ? b : c → a ? b : c`