( cssText: string, loc: SourceLocation, )
| 33 | } |
| 34 | |
| 35 | const parseInlineCSS = ( |
| 36 | cssText: string, |
| 37 | loc: SourceLocation, |
| 38 | ): SimpleExpressionNode => { |
| 39 | const normalized = parseStringStyle(cssText) |
| 40 | return createSimpleExpression( |
| 41 | JSON.stringify(normalized), |
| 42 | false, |
| 43 | loc, |
| 44 | ConstantTypes.CAN_STRINGIFY, |
| 45 | ) |
| 46 | } |
no test coverage detected