(decl: ReworkCSS.Declaration)
| 812 | } |
| 813 | |
| 814 | function createDeclaration(decl: ReworkCSS.Declaration): any { |
| 815 | return { property: isCssVariable(decl.property) ? decl.property : decl.property.toLowerCase(), value: decl.value }; |
| 816 | } |
| 817 | |
| 818 | function createSimpleSelectorFromAst(ast: CSSWhatSelector): SimpleSelector { |
| 819 | if (ast.type === 'attribute') { |
nothing calls this directly
no test coverage detected