()
| 240 | } |
| 241 | |
| 242 | async function readScriptFromStdin(): Promise<string> { |
| 243 | return process.stdin.isTTY ? '' : stdin() |
| 244 | } |
| 245 | |
| 246 | async function readScriptFromHttp(remote: string): Promise<string> { |
| 247 | const res = await fetch(remote) |
no test coverage detected
searching dependent graphs…