mirror of
https://github.com/snachodog/just-the-docs.git
synced 2025-04-12 22:52:21 -06:00
18 lines
324 B
JavaScript
18 lines
324 B
JavaScript
/* @flow */
|
|
"use strict"
|
|
|
|
const selectorParser = require("postcss-selector-parser")
|
|
|
|
module.exports = function (
|
|
selector/*: string*/,
|
|
result/*: Object*/,
|
|
node/*: Object*/,
|
|
cb/*: Function*/
|
|
) {
|
|
try {
|
|
selectorParser(cb).process(selector)
|
|
} catch (e) {
|
|
result.warn("Cannot parse selector", { node })
|
|
}
|
|
}
|