(value: string)
| 13 | `'${value.replace(/'/g, `'\\''`)}'` |
| 14 | |
| 15 | const escapeForCmd = (value: string): string => |
| 16 | `"${value.replace(/"/g, '""')}"` |
| 17 | |
| 18 | const replaceFilePlaceholder = (command: string, filePath: string): string => { |
| 19 | if (command.includes('%f')) { |
no outgoing calls
no test coverage detected