(compId: string, styles: string[])
| 79 | } |
| 80 | |
| 81 | export function shimStylesContent(compId: string, styles: string[]): string[] { |
| 82 | return styles.map((s) => s.replace(COMPONENT_REGEX, compId)); |
| 83 | } |
| 84 | |
| 85 | /** |
| 86 | * Prepends a baseHref to the `sourceMappingURL` within the provided CSS content. |
no test coverage detected
searching dependent graphs…