Package Exports
- sort-specificity
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (sort-specificity) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Sort Specificity
Sort css selector for specificity
Instalation
npm install sort-specificityUsage
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