You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
559 B
20 lines
559 B
import { isFilter } from "./positionals.js"; |
|
export function getDocumentRoot(node) { |
|
while (node.parent) |
|
node = node.parent; |
|
return node; |
|
} |
|
export function groupSelectors(selectors) { |
|
const filteredSelectors = []; |
|
const plainSelectors = []; |
|
for (const selector of selectors) { |
|
if (selector.some(isFilter)) { |
|
filteredSelectors.push(selector); |
|
} |
|
else { |
|
plainSelectors.push(selector); |
|
} |
|
} |
|
return [plainSelectors, filteredSelectors]; |
|
} |
|
//# sourceMappingURL=helpers.js.map
|