mirror of
https://github.com/thangisme/notes.git
synced 2024-11-01 05:37:16 -04: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 })
|
||
|
}
|
||
|
}
|