stylelint
Version:
A mighty CSS linter that helps you avoid errors and enforce conventions.
18 lines (13 loc) • 331 B
JavaScript
import { isRoot } from './typeGuards.mjs';
/**
* @param {import('postcss').Node} node
* @returns {boolean}
*/
export default function isFirstNodeOfRoot(node) {
if (isRoot(node)) return false;
const parentNode = node.parent;
if (!parentNode) {
return false;
}
return isRoot(parentNode) && node === parentNode.first;
}