diff options
author | Alex Lam S.L <alexlamsl@gmail.com> | 2019-03-18 21:28:41 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-18 21:28:41 +0800 |
commit | 615ae37ca3a659df2ed304d7d30a43704fdd43ab (patch) | |
tree | ecf01cb2abf81f788743724159d99340862d0be7 /README.md | |
parent | 7aa7f21872a443cad6fe496b1a2f66e969b19f09 (diff) | |
download | tracifyjs-615ae37ca3a659df2ed304d7d30a43704fdd43ab.tar.gz tracifyjs-615ae37ca3a659df2ed304d7d30a43704fdd43ab.zip |
introduce `assignments` (#3345)
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -605,6 +605,8 @@ If you're using the `X-SourceMap` header instead, you can just omit `sourceMap.u - `arguments` (default: `true`) -- replace `arguments[index]` with function parameter name whenever possible. +- `assignments` (default: `true`) -- apply optimizations to assignment expressions. + - `booleans` (default: `true`) -- various optimizations for boolean context, for example `!!a ? b : c → a ? b : c` |