(candidate: string)
| 142 | } |
| 143 | |
| 144 | private canMapPath(candidate: string) { |
| 145 | return ( |
| 146 | path.posix.isAbsolute(candidate) || path.win32.isAbsolute(candidate) || isFileUrl(candidate) |
| 147 | ); |
| 148 | } |
| 149 | } |
nothing calls this directly
no test coverage detected