(options)
| 66632 | }; |
| 66633 | var getInputSync = ({ input, inputFile }) => { |
| 66634 | if (typeof inputFile !== "string") { |
| 66635 | return input; |
| 66636 | } |
| 66637 | validateInputOptions(input); |
| 66638 | return (0, import_node_fs2.readFileSync)(inputFile); |
| 66639 | }; |
| 66640 | var handleInputSync = (options) => { |
| 66641 | const input = getInputSync(options); |
| 66642 | if (isStream(input)) { |
| 66643 | throw new TypeError("The `input` option cannot be a stream in sync mode"); |
no test coverage detected
searching dependent graphs…