sort-specificity
v1.0.1
Published
Sort CSS specificity
Downloads
4
Readme
Sort Specificity
Sort css selector for specificity
Instalation
npm install sort-specificity
Usage
var sortSpecificity = require('sort-specificity')
var input = [
"a .d b#foo",
"b",
"a .d b.d",
"a b",
"a .d b",
]
var result = sortSpecificity(input)
result is
[
"a .d b#foo",
"a .d b.d",
"a .d b",
"a b",
"b"
]
Input raw css
You can input raw css.
var css = fs.readFileSync("./fixtures/sample.css", "utf-8")
var result = sortSpecificity(css) // parsed css selctor