(list: string[])
| 704 | } |
| 705 | |
| 706 | export function quoteShellCmdLine(list: string[]): string { |
| 707 | return list.map((s) => quoteShellAndCmdChars(s)).join(' '); |
| 708 | } |
| 709 | |
| 710 | export function sanitizeDevDebug(config: ConfigurationArguments | any): boolean { |
| 711 | const modes = Object.values(ADAPTER_DEBUG_MODE); |
no test coverage detected