(value: string)
| 98 | } |
| 99 | |
| 100 | function hasTopLevelComma(value: string): boolean { |
| 101 | return splitByTopLevelComma(value, true).length > 1 |
| 102 | } |
| 103 | |
| 104 | const BG_SIZE_RE = /\/\s*(cover|contain|auto|[\d.]+(?:px|%)?)/i |
| 105 | const BG_REPEAT_RE = /(?:^|\s)(no-repeat|repeat-x|repeat-y|repeat|space|round)(?=$|\s)/i |
no test coverage detected