()
| 20632 | stdout += stdoutDecoder.write(data); |
| 20633 | if (originalStdoutListener) { |
| 20634 | originalStdoutListener(data); |
| 20635 | } |
| 20636 | }; |
| 20637 | const listeners = Object.assign(Object.assign({}, options === null || options === void 0 ? void 0 : options.listeners), { stdout: stdOutListener, stderr: stdErrListener }); |
| 20638 | const exitCode = yield exec(commandLine, args, Object.assign(Object.assign({}, options), { listeners })); |
| 20639 | stdout += stdoutDecoder.end(); |
| 20640 | stderr += stderrDecoder.end(); |
| 20641 | return { |
| 20642 | exitCode, |
| 20643 | stdout, |
| 20644 | stderr |
| 20645 | }; |
| 20646 | }); |
| 20647 | } |
nothing calls this directly
no test coverage detected