We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 18d5e32 commit 4377b88Copy full SHA for 4377b88
docs/getting-started.md
@@ -17,6 +17,7 @@ The regular way of running Sass.js in the browser is by using the Web Worker (se
17
```html
18
<script src="dist/sass.js"></script>
19
<script>
20
+ var sass = new Sass();
21
var scss = '$someVar: 123px; .some-selector { width: $someVar; }';
22
sass.compile(scss, function(result) {
23
console.log(result);
0 commit comments