({ input, 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"); |
| 66644 | } |
| 66645 | return input; |
| 66646 | }; |
| 66647 | var getInput = ({ input, inputFile }) => { |
| 66648 | if (typeof inputFile !== "string") { |
| 66649 | return input; |
| 66650 | } |
no test coverage detected
searching dependent graphs…