(args: readonly string[])
| 80 | } |
| 81 | |
| 82 | function shellJoinArgs(args: readonly string[]): string { |
| 83 | return args.map(shellQuoteArg).join(' ') |
| 84 | } |
| 85 | |
| 86 | function createDeterministicPtyEnv( |
| 87 | envOverrides?: NodeJS.ProcessEnv, |
no outgoing calls
no test coverage detected