(input: string)
| 131 | } |
| 132 | |
| 133 | const tab = (input: string) => { |
| 134 | const path = normalize(input) |
| 135 | return `file://${encodeFilePath(path)}` |
| 136 | } |
| 137 | |
| 138 | const pathFromTab = (tabValue: string) => { |
| 139 | if (!tabValue.startsWith("file://")) return |
no test coverage detected