mirror of
https://github.com/OliveTin/OliveTin
synced 2025-12-18 12:05:32 +00:00
33 lines
1.0 KiB
JavaScript
33 lines
1.0 KiB
JavaScript
// NOTICE: This file is generated by Rollup. To modify it,
|
|
// please instead edit the ESM counterpart and rebuild with Rollup (npm run build).
|
|
'use strict';
|
|
|
|
const selectorParser = require('postcss-selector-parser');
|
|
|
|
/**
|
|
* @param {string} selector
|
|
* @param {import('stylelint').PostcssResult} result
|
|
* @param {import('postcss').Node} node
|
|
* @param {(root: import('postcss-selector-parser').Root) => void} [callback] - Deprecated. It will be removed in the future.
|
|
* @returns {import('postcss-selector-parser').Root | undefined}
|
|
*/
|
|
function parseSelector(selector, result, node, callback) {
|
|
if (!selector) return undefined;
|
|
|
|
try {
|
|
// TODO: Remove `callback` in the future. See #7647.
|
|
if (callback) {
|
|
// @ts-expect-error -- TS2322: Type 'string' is not assignable to type 'Root'.
|
|
return selectorParser(callback).processSync(selector);
|
|
}
|
|
|
|
return selectorParser().astSync(selector);
|
|
} catch (err) {
|
|
result.warn(`Cannot parse selector (${err})`, { node, stylelintType: 'parseError' });
|
|
|
|
return undefined;
|
|
}
|
|
}
|
|
|
|
module.exports = parseSelector;
|