(arg: string)
| 362 | * - Next ' starts a new single-quoted string |
| 363 | */ |
| 364 | export function escapeShellArg(arg: string): string { |
| 365 | return arg.replace(/'/g, "'\\''") |
| 366 | } |
| 367 | |
| 368 | /** |
| 369 | * Validate that authentication credentials are provided |
no test coverage detected