mirror of
https://github.com/OliveTin/OliveTin
synced 2025-12-18 20:15:38 +00:00
18 lines
331 B
JavaScript
18 lines
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;
|
|
}
|