(name: string, value: string)
| 3 | const isSSR = typeof document === "undefined"; |
| 4 | |
| 5 | const getStyleId = (name: string, value: string) => { |
| 6 | return value ? `${name}|${value}` : name; |
| 7 | }; |
| 8 | |
| 9 | const shouldUpdate = (runtimeIndex: string | undefined) => { |
| 10 | if (runtimeIndex === undefined) { |
no outgoing calls
no test coverage detected
searching dependent graphs…