0.0.1 • Published 5 years ago

parse-css-rule v0.0.1

Weekly downloads
2
License
MIT
Repository
github
Last release
5 years ago

parse-css-rule

Parse a string of text as a CSS rule using JavaScript in the browser environment.

about

This module makes use of parse-css-stylesheet to return the first CSS rule parsed from any CSS stylesheet given to this function as a string.

usage

This software is distributed as an ES module and should work in all modern browsers (including Chrome/Safari/Edge/Firefox).

import parseRule from 'https://unpkg.com/parse-css-rule/index.js'

// Log the parsed CSS rule object to the console
console.log(
  parseRule(':root { background-color: lime }')
)