(selector: string)
| 1197 | } |
| 1198 | |
| 1199 | function nestedSelectorToVariant(selector: string): string | null { |
| 1200 | const normalized = selector.trim().replace(ALL_WHITESPACE_RE, '') |
| 1201 | return NESTED_SELECTOR_VARIANTS[normalized] ?? null |
| 1202 | } |
| 1203 | |
| 1204 | export function nestedCssToClassNames(style: NestedStyleMap): string[] { |
| 1205 | const base: Record<string, string> = {} |
no outgoing calls
no test coverage detected