(connName: string)
| 13 | } |
| 14 | |
| 15 | function isLocalConnName(connName: string): boolean { |
| 16 | if (isBlank(connName)) { |
| 17 | return true; |
| 18 | } |
| 19 | return connName === "local" || connName.startsWith("local:"); |
| 20 | } |
| 21 | |
| 22 | function isWslConnName(connName: string): boolean { |
| 23 | return connName != null && connName.startsWith("wsl://"); |
no test coverage detected