Support input from stdin. Fixes #834
This commit is contained in:
Родитель
72464f829b
Коммит
33d329314f
|
@ -12,7 +12,9 @@ const fetch = require("node-fetch");
|
|||
|
||||
export async function readableFromFileOrURL(fileOrURL: string): Promise<Readable> {
|
||||
try {
|
||||
if (isURL(fileOrURL)) {
|
||||
if (fileOrURL === "-") {
|
||||
return process.stdin;
|
||||
} else if (isURL(fileOrURL)) {
|
||||
const response = await fetch(fileOrURL);
|
||||
return response.body;
|
||||
} else if (fs.existsSync(fileOrURL)) {
|
||||
|
|
Загрузка…
Ссылка в новой задаче