(compId: string, styles: string[])
| 108 | } |
| 109 | |
| 110 | export function shimStylesContent(compId: string, styles: string[]): string[] { |
| 111 | return styles.map((s) => s.replace(COMPONENT_REGEX, compId)); |
| 112 | } |
| 113 | |
| 114 | /** |
| 115 | * Prepends a baseHref to the `sourceMappingURL` within the provided CSS content. |
no test coverage detected