(value: string)
| 18 | } |
| 19 | |
| 20 | function formatCliArg(value: string): string { |
| 21 | return SHELL_SAFE_UNQUOTED_ARG.test(value) && !value.startsWith('-') |
| 22 | ? value |
| 23 | : shellEscapeArg(value); |
| 24 | } |
| 25 | |
| 26 | function hasComplexCliParamValue(value: NextStepParamValue): boolean { |
| 27 | return typeof value === 'object' && value !== null; |
no test coverage detected