(key: string)
| 137 | } |
| 138 | |
| 139 | prefixKey(key: string) { |
| 140 | if (!this.prefix) return key |
| 141 | return `--${this.prefix}-${key.slice(2)}` |
| 142 | } |
| 143 | |
| 144 | #unprefixKey(key: string) { |
| 145 | if (!this.prefix) return key |
no outgoing calls
no test coverage detected