1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
|
# scss-tokenizer
A tokenizer for Sass' SCSS syntax




# Install
```
npm install scss-tokenizer
```
# Usage
```js
var scss = require('scss-tokenizer');
scss.tokenize(css);
```
# API
### `tokenize`
Tokenizes source `css` and returns an ordered array of tokens with positional
data.
```js
var tokenizer = require('scss-tokenizer');
var tokens = tokenize.tokenize(css);
```
Arguments:
* `css (string|#toString)`: String with input CSS or any object
with `toString()` method, like file stream.
* `opts (object) optional`: options:
* `from`: the path to the source CSS file. You should always set `from`,
because it is used in map generation and in syntax error messages.
# Test
```
npm test
```
## Attribution
This project started as a fork of the [PostCSS](https://github.com/postcss/postcss) tokenizer.
|