(spawned, options)
| 66646 | }; |
| 66647 | var getInput = ({ input, inputFile }) => { |
| 66648 | if (typeof inputFile !== "string") { |
| 66649 | return input; |
| 66650 | } |
| 66651 | validateInputOptions(input); |
| 66652 | return (0, import_node_fs2.createReadStream)(inputFile); |
| 66653 | }; |
| 66654 | var handleInput = (spawned, options) => { |
| 66655 | const input = getInput(options); |
| 66656 | if (input === void 0) { |
| 66657 | return; |
| 66658 | } |
| 66659 | if (isStream(input)) { |
| 66660 | input.pipe(spawned.stdin); |
| 66661 | } else { |