(componentShortId: string)
| 75 | } |
| 76 | |
| 77 | export function shimHostAttribute(componentShortId: string): string { |
| 78 | return HOST_ATTR.replace(COMPONENT_REGEX, componentShortId); |
| 79 | } |
| 80 | |
| 81 | export function shimStylesContent(compId: string, styles: string[]): string[] { |
| 82 | return styles.map((s) => s.replace(COMPONENT_REGEX, compId)); |
no test coverage detected
searching dependent graphs…