(value: string)
| 93 | } |
| 94 | |
| 95 | function value(value: string): SelectorValueNode { |
| 96 | return { |
| 97 | kind: 'value', |
| 98 | value, |
| 99 | } |
| 100 | } |
| 101 | |
| 102 | export function toCss(ast: SelectorAstNode[], minify = false) { |
| 103 | let css = '' |
no outgoing calls
no test coverage detected