(value: unknown)
| 10 | } |
| 11 | |
| 12 | function toRuntimeId(value: unknown): string | null { |
| 13 | const id = String(value ?? "") |
| 14 | .trim() |
| 15 | .toLowerCase(); |
| 16 | return id || null; |
| 17 | } |
| 18 | |
| 19 | function getRuntimeSettings(): RuntimeSettings { |
| 20 | const runtime = appSettings.value?.lsp?.runtime; |
no test coverage detected