(opts: ChildProcess.CommandOptions)
| 107 | }) |
| 108 | |
| 109 | const env = (opts: ChildProcess.CommandOptions) => |
| 110 | opts.extendEnv ? { ...globalThis.process.env, ...opts.env } : opts.env |
| 111 | |
| 112 | const input = (x: ChildProcess.CommandInput | undefined): NodeChildProcess.IOType | undefined => |
| 113 | Stream.isStream(x) ? "pipe" : x |
no outgoing calls
no test coverage detected