Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

css-tokens

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

css-tokens

A regex that tokenizes CSS.

  • 0.1.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
35
decreased by-18.6%
Maintainers
1
Weekly downloads
 
Created
Source

Overview Build Status

A regex that tokenizes CSS.

var cssTokens = require("css-tokens")

// Tokenize a whole string of CSS:
cssString.match(cssTokens)
// [".", "foo", "{", "prop", ":", " ", "foo", ";", "}", "\n", ...]

// Rename the class `foo` to `bar`:
var lastToken
cssString.replace(cssTokens, function(token) {
  if (lastToken === "." && token === "foo") {
    return "bar"
  }
  lastToken = token
  return token
})
// [".", "bar", "{", "prop", ":", " ", "foo", ";", "}", "\n", ...]

Installation

npm install css-tokens

var cssTokens = require("css-tokens")

Usage

cssTokens

A regex with the g flag that matches CSS tokens.

The regex always matches, even invalid CSS and the empty string. For example, cssTokens.exec(string) never returns null.

The next match is always directly after the previous. Each token has its own capturing group.

cssTokens.names

An array of names for each token, in the capturing group order.

Invalid code handling

Unterminated strings are still matched as strings. CSS strings cannot contain (unescaped) newlines, so unterminated strings simply end at the end of the line. You may use /['"]$/.test(matchedStringToken) to determine if a string was terminated or not.

Unterminated multi-line comments are also still matched as comments. They simply go on to the end of the string.

Unterminated unquoted urls are also still matched as unquoted urls. They continue as long as there are valid characters.

Invalid ASCII characters have their own capturing group.

Limitations

Tokenizing CSS using regexes—in fact, one single regex—won’t be perfect. But that’s not the point either.

The only known “limitation” is the following:

url(http://www.w3.org/2000/svg)
url('http://www.w3.org/2000/svg')

The first line is matched as one single token (unquotedUrl), while the second is matched as four (name + punctuation + string + punctuation). This could be fixed, but isn’t to simplify the regex.

Build

index.js is generated by running node generate-index.js. The regex is written in regex.coffee. Don’t worry, you don’t need to know anything about CoffeeScript: regex.coffee should be kept as simple as possible. CoffeeScript is only used for its block regexes, which have the following benefits:

  • Insignificant whitespace.
  • Comments.
  • No need to escape slashes.
  • No need to double-escape everything (as opposed to using RegExp("regex as a string. One backslash: \\\\")).
  • Plenty of syntax highlighters available.

Everything else is written in JavaScript.

License

The X11 (“MIT”) License.

Keywords

FAQs

Package last updated on 09 Mar 2014

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc