(value: string, platform: NodeJS.Platform)
| 220 | } |
| 221 | |
| 222 | function quoteShellArg(value: string, platform: NodeJS.Platform): string { |
| 223 | if (platform === 'win32') return `"${value.replaceAll('"', '\\"')}"`; |
| 224 | return `'${value.replaceAll("'", "'\\''")}'`; |
| 225 | } |
no outgoing calls
no test coverage detected