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