scss-tokenizer
A tokenzier for Sass' SCSS syntax
Last updated 2 years ago by xzyfer .
MIT · Repository · Bugs · Original npm · Tarball · package.json
$ gnpm install scss-tokenizer 
SYNC missed versions from official npm registry.

scss-tokenizer

A tokenizer for Sass' SCSS syntax

https://travis-ci.org/sasstools/scss-tokenizer.svg?branch=master https://www.npmjs.com/package/scss-tokenizer https://github.com/sasstools/scss-tokenizer/issues

Install

npm install scss-tokenizer

Usage

var scss = require('scss-tokenizer');
scss.tokenize(css);

API

tokenize

Tokenizes source css and returns an ordered array of tokens with positional data.

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 tokenizer.

Current Tags

  • 0.4.3                                ...           latest (2 years ago)

13 Versions

  • 0.4.3                                ...           2 years ago
  • 0.4.2                                ...           6 years ago
  • 0.4.1                                ...           6 years ago
  • 0.4.0                                ...           6 years ago
  • 0.3.0                                ...           7 years ago
  • 0.2.3                                ...           8 years ago
  • 0.2.2                                ...           8 years ago
  • 0.2.1                                ...           8 years ago
  • 0.2.0                                ...           8 years ago
  • 0.1.2                                ...           8 years ago
  • 0.1.1                                ...           8 years ago
  • 0.1.0                                ...           8 years ago
  • 0.0.1                                ...           9 years ago
Maintainers (1)
Downloads
Today 0
This Week 0
This Month 0
Last Day 0
Last Week 0
Last Month 0
Dependencies (2)
Dev Dependencies (7)
Dependents (1)

Copyright 2013 - present © cnpmjs.org | Home |