(property: string)
| 57 | } |
| 58 | |
| 59 | export function isCssVariable(property: string) { |
| 60 | return CSS_VARIABLE_NAME_RE.test(property); |
| 61 | } |
| 62 | |
| 63 | export function isCssCalcExpression(value: string) { |
| 64 | return value.includes('calc('); |
no test coverage detected