()
| 2 | let componentsStyleSheet: CSSStyleSheet; |
| 3 | |
| 4 | const getComponentStyles = () => { |
| 5 | if (!componentsStyleSheet) { |
| 6 | componentsStyleSheet = new CSSStyleSheet(); |
| 7 | } |
| 8 | |
| 9 | return componentsStyleSheet; |
| 10 | }; |
| 11 | |
| 12 | const updateComponentStyles = (packageName: string, content: string) => { |
| 13 | packageMap.set(packageName, content); |
no outgoing calls
no test coverage detected
searching dependent graphs…