diff options
author | Alex Lam S.L <alexlamsl@gmail.com> | 2019-11-28 07:40:34 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-11-28 07:40:34 +0800 |
commit | 5a88c30d6598bc9ec6d3b81077a95ab6942da9cd (patch) | |
tree | dff8d0e511b33f8142c152bab5885b19eec36c80 /lib | |
parent | 168ae747ad8c8c48a0318eaaffd25e084521fb60 (diff) | |
download | tracifyjs-5a88c30d6598bc9ec6d3b81077a95ab6942da9cd.tar.gz tracifyjs-5a88c30d6598bc9ec6d3b81077a95ab6942da9cd.zip |
enhance `assignments` (#3612)
Diffstat (limited to 'lib')
-rw-r--r-- | lib/compress.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/compress.js b/lib/compress.js index 686a8d42..52c79a73 100644 --- a/lib/compress.js +++ b/lib/compress.js @@ -6720,8 +6720,8 @@ merge(Compressor.prototype, { self.right = self.right.left; } } - if ((self.operator == "+=" || self.operator == "-=") - && self.left.is_number(compressor) + if ((self.operator == "-=" || self.operator == "+=" + && (self.left.is_boolean(compressor) || self.left.is_number(compressor))) && self.right instanceof AST_Number && self.right.getValue() === 1) { var op = self.operator.slice(0, -1); |