epiphany/node_modules/postcss-sorting/lib/getContainingNode.js
2023-12-09 22:48:07 -08:00

17 lines
478 B
JavaScript

module.exports = function getContainingNode(node) {
if (node.type === 'rule' || node.type === 'atrule') {
return node;
}
// postcss-styled-syntax: declarations are children of Root node
if (node.parent?.type === 'root' && node.parent?.raws.isRuleLike) {
return node.parent;
}
// @stylelint/postcss-css-in-js: declarations are children of Root node
if (node.parent?.document?.nodes?.some((item) => item.type === 'root')) {
return node.parent;
}
return node;
};