Extracts all atomic style rules from a given stylesheet
npm install @ibnlanre/atomizebash
npm i @ibnlanre/atomize
`
API
`javascript
// NodeJS Require
const atomize = require("@ibnlanre/atomize");
// ES6 Import
import atomize from "@ibnlanre/atomize";
const grammar = atomize({
file: "../styles/quantum.css", // the relative path
sep: "_", // separator used for class names in the stylesheet
path: __dirname, // the directory path of the executable
dest: ".", // specifies the destination, if { save: true }
save: true // it is false by default -> ./quantum.js
}) // return an object of { class: property }
``