(key: string)
| 142 | } |
| 143 | |
| 144 | #unprefixKey(key: string) { |
| 145 | if (!this.prefix) return key |
| 146 | return `--${key.slice(3 + this.prefix.length)}` |
| 147 | } |
| 148 | |
| 149 | clearNamespace(namespace: string, clearOptions: ThemeOptions) { |
| 150 | let ignored = ignoredThemeKeyMap.get(namespace) ?? [] |
no outgoing calls
no test coverage detected