We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
input.scss
$seven: 7; $a: '#{7}'; $b: '#{7}'; .test { equal: ($a == $b); equal: ('#{7}' == '#{7}'); equal: ('#{$seven}' == '#{$seven}'); }
libsass 3.4.0
.test { equal: true; equal: false; equal: false; }
ruby sass 3.4.21
.test { equal: true; equal: true; equal: true; }
version info:
$ node-sass --version node-sass 4.1.0 (Wrapper) [JavaScript] libsass 3.4.0 (Sass Compiler) [C/C++]
The text was updated successfully, but these errors were encountered:
Fixes equality compare evaluation issue
a8f0975
Fixes sass#2261
Add todo spec test for libsass issue 2261
3b7d73b
sass/libsass#2261
Thanks for your report. This will be fixed with #2262.
Sorry, something went wrong.
9cb7324
27077e8
9b83147
Fixes #2261
mgreter
No branches or pull requests
LibSass incorrectly compares inline Interpolated string values
input.scss
libsass 3.4.0
ruby sass 3.4.21
version info:
The text was updated successfully, but these errors were encountered: