@@ -3502,7 +3502,8 @@ merge(Compressor.prototype, {
|
||||
var left = this.left._eval(compressor, ignore_side_effects, cached, depth);
|
||||
if (left === this.left) return this;
|
||||
if (this.operator == (left ? "||" : "&&")) return left;
|
||||
var right = this.right._eval(compressor, ignore_side_effects, cached, depth);
|
||||
var rhs_ignore_side_effects = ignore_side_effects && !(left && typeof left == "object");
|
||||
var right = this.right._eval(compressor, rhs_ignore_side_effects, cached, depth);
|
||||
if (right === this.right) return this;
|
||||
var result;
|
||||
switch (this.operator) {
|
||||
|
||||
Reference in New Issue
Block a user