@@ -3618,6 +3618,8 @@ merge(Compressor.prototype, {
|
||||
return this.left.is_defined(compressor) && this.right.is_defined(compressor);
|
||||
case "||":
|
||||
return this.left.is_truthy() || this.right.is_defined(compressor);
|
||||
case "??":
|
||||
return this.left.is_defined(compressor) || this.right.is_defined(compressor);
|
||||
default:
|
||||
return true;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user