({ input, inputFile })
| 66625 | var import_node_fs2 = require("node:fs"); |
| 66626 | var import_get_stream = __toESM(require_get_stream(), 1); |
| 66627 | var import_merge_stream = __toESM(require_merge_stream(), 1); |
| 66628 | var validateInputOptions = (input) => { |
| 66629 | if (input !== void 0) { |
| 66630 | throw new TypeError("The `input` and `inputFile` options cannot be both set."); |
| 66631 | } |
| 66632 | }; |
| 66633 | var getInputSync = ({ input, inputFile }) => { |
| 66634 | if (typeof inputFile !== "string") { |
| 66635 | return input; |
| 66636 | } |
no test coverage detected
searching dependent graphs…