You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Ruby SASS allows multiple comparison operators to appear in a single unparenthesized expression, in the format:
a == b == c
a > b == c
And so on. Indeed "c" needs to be a boolean value for this to be useful but it is nevertheless supported. Libsass currently only allows one comparison operator (== != > >= < <=) per unparenthesized expression.
This was one of the major fixes in the milestone 3.4 branch and I've added a pretty extensive test suite to back up this feature! Code for it is a bit dirty in some places, but specs do pass!
Ruby SASS allows multiple comparison operators to appear in a single unparenthesized expression, in the format:
And so on. Indeed "c" needs to be a boolean value for this to be useful but it is nevertheless supported. Libsass currently only allows one comparison operator (
== != > >= < <=
) per unparenthesized expression.Input:
Ruby SASS Output (3.4.19):
Libsass Output (3.2.5):
The text was updated successfully, but these errors were encountered: