Socket
Socket
Sign inDemoInstall

scss-tokenizer

Package Overview
Dependencies
2
Maintainers
1
Versions
13
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    scss-tokenizer

A tokenzier for Sass' SCSS syntax


Version published
Weekly downloads
1.7M
decreased by-0.7%
Maintainers
1
Install size
278 kB
Created
Weekly downloads
 

Readme

Source

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.

Keywords

FAQs

Last updated on 10 Aug 2022

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc