Skip to content

Commit

Permalink
CultureValue should be truthy (#16978)
Browse files Browse the repository at this point in the history
  • Loading branch information
hishamco authored Nov 8, 2024
1 parent 3530141 commit 8776fff
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public override bool Equals(FluidValue other)
return ToStringValue() == other.ToStringValue();
}

public override bool ToBooleanValue() => false;
public override bool ToBooleanValue() => true;

public override decimal ToNumberValue() => 0;

Expand Down

0 comments on commit 8776fff

Please sign in to comment.