stylelint
Version:
A mighty CSS linter that helps you avoid errors and enforce conventions.
28 lines (22 loc) • 504 B
JavaScript
import { isAtRule, isRule } from './typeGuards.mjs';
/**
* Find the at-rule in which a rule is nested.
*
* Returns `null` if the rule is not nested within an at-rule.
*
* @param {import('postcss').Rule} rule
* @returns {null | import('postcss').AtRule}
*/
export default function findAtRuleContext(rule) {
const parent = rule.parent;
if (!parent) {
return null;
}
if (isAtRule(parent)) {
return parent;
}
if (isRule(parent)) {
return findAtRuleContext(parent);
}
return null;
}