We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7377102 commit a9d0b18Copy full SHA for a9d0b18
src/util/formatVariantSelector.js
@@ -339,17 +339,6 @@ let pseudoElementExceptions = [
339
'::-webkit-resizer',
340
]
341
342
-export function containsNode(selector, values) {
343
- let found = false
344
- selector.walk((node) => {
345
- if (values.includes(node.value)) {
346
- found = true
347
- return false
348
- }
349
- })
350
- return found
351
-}
352
-
353
/**
354
* This will make sure to move pseudo's to the correct spot (the end for
355
* pseudo elements) because otherwise the selector will never work
0 commit comments