(p: string | undefined)
| 387 | export function platformPathToPreferredCase(p: string): string; |
| 388 | export function platformPathToPreferredCase(p: string | undefined): string | undefined; |
| 389 | export function platformPathToPreferredCase(p: string | undefined): string | undefined { |
| 390 | if (p && process.platform === 'win32' && p[1] === ':') return p[0].toUpperCase() + p.substring(1); |
| 391 | return p; |
| 392 | } |
| 393 | |
| 394 | export type TargetFilter = (info: Cdp.Target.TargetInfo) => boolean; |
| 395 |
no test coverage detected