(theme: Theme)
| 11 | import type {CSSVariableModifier} from './variables'; |
| 12 | |
| 13 | function getThemeKey(theme: Theme) { |
| 14 | let resultKey = ''; |
| 15 | themeCacheKeys.forEach((key) => { |
| 16 | resultKey += `${key}:${theme[key]};`; |
| 17 | }); |
| 18 | return resultKey; |
| 19 | } |
| 20 | |
| 21 | const asyncQueue = createAsyncTasksQueue(); |
| 22 |
no outgoing calls
no test coverage detected
searching dependent graphs…