(x: NodeChildProcess.IOType | undefined)
| 152 | extra: ReadonlyArray<{ fd: number; config: ChildProcess.AdditionalFdConfig }>, |
| 153 | ): NodeChildProcess.StdioOptions => { |
| 154 | const pipe = (x: NodeChildProcess.IOType | undefined) => |
| 155 | process.platform === "win32" && x === "pipe" ? "overlapped" : x |
| 156 | const arr: Array<NodeChildProcess.IOType | undefined> = [ |
| 157 | pipe(input(sin.stream)), |
| 158 | pipe(output(sout.stream)), |
no outgoing calls
no test coverage detected