(tabValue: string)
| 136 | } |
| 137 | |
| 138 | const pathFromTab = (tabValue: string) => { |
| 139 | if (!tabValue.startsWith("file://")) return |
| 140 | return normalize(tabValue) |
| 141 | } |
| 142 | |
| 143 | const normalizeDir = (input: string) => normalize(input).replace(/\/+$/, "") |
| 144 |
nothing calls this directly
no test coverage detected