1<===> input.scss
2div {
3  foo: center == "center";
4  foo: (a b c) == (a b c);
5  foo: a b c == a b c;
6}
7
8<===> output.css
9div {
10  foo: true;
11  foo: true;
12  foo: a b false b c;
13}
14