(css, { strict = false } = {})
| 16 | const nestingProcessor = postcss([nesting()]); |
| 17 | |
| 18 | function parseRoot(css, { strict = false } = {}) { |
| 19 | return nestingProcessor.process(css, { |
| 20 | parser: strict ? undefined : safeParser, |
| 21 | from: undefined, |
| 22 | }).root; |
| 23 | } |
| 24 | |
| 25 | /** |
| 26 | * Returns an array of the selectors. |
no outgoing calls
no test coverage detected
searching dependent graphs…