(value: string)
| 750 | } |
| 751 | |
| 752 | function isConstructedColorVar(value: string) { |
| 753 | return ( |
| 754 | value.match(/^\s*(rgb|hsl)a?\(/) || |
| 755 | value.match(/^(((\d{1,3})|(var\([\-_A-Za-z0-9]+\))),?\s*?){3}$/) |
| 756 | ); |
| 757 | } |
| 758 | |
| 759 | function isFallbackResolved(modified: string) { |
| 760 | if (modified.startsWith('var(') && modified.endsWith(')')) { |
no outgoing calls
no test coverage detected