1<===> input.scss 2.test-1 { 3 content: null; 4 content: inspect(null); 5 content: inspect(false); 6 content: inspect(true); 7 content: inspect(42); 8 content: inspect(42.3); 9 content: inspect(42px); 10 content: inspect("string"); 11 $list: 1, 2, 3; 12 content: inspect($list); 13 $map: ( a: 1, b: 2, c: 3 ); 14 content: inspect($map); 15} 16 17<===> output.css 18.test-1 { 19 content: null; 20 content: null; 21 content: false; 22 content: true; 23 content: 42; 24 content: 42.3; 25 content: 42px; 26 content: "string"; 27 content: 1, 2, 3; 28 content: (a: 1, b: 2, c: 3); 29} 30 31<===> output-dart-sass.css 32.test-1 { 33 content: null; 34 content: false; 35 content: true; 36 content: 42; 37 content: 42.3; 38 content: 42px; 39 content: "string"; 40 content: 1, 2, 3; 41 content: (a: 1, b: 2, c: 3); 42} 43