/
githubmirror
/
deno
Обзор
Документация
Войти
/
githubmirror
/
deno
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
tests/unit_node/testdata/child_process_extra_stdio_fd3.js
13 строк
255 B
Fibi
fix(ext/node): support fd 3 pipes in spawned Deno children (#34133)
06 июл 2026, 14:58
Не верифицирован
06 июл 2026, 14:58
4b3cf68
Код
Авторство
О чём код?
import { createWriteStream } from "node:fs"; const stream = createWriteStream(null, { fd: 3 }); stream.on("error", (err) => { console.error(err); process.exit(1); }); stream.on("close", () => { process.exit(0); }); stream.end("hello from fd 3");