css2object
v0.1.0
Published
Converts css to object/json (fun thang!)
Downloads
8
Maintainers
Readme
Installation
npm add css2object
Usage
import Css2Object from 'css2object';
const cssData = `
h1 {
color: blue;
}
body {
color: red;
}
`
const css2json = new Css2Object(cssData);
css2json.read();
console.log(css2json.cssRecord));
LICENSE
MIT