/
githubmirror
/
deno
Обзор
Документация
Войти
/
githubmirror
/
deno
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
ext/node/polyfills/child_process_esm.ts
14 строк
482 B
Bartek Iwańczuk
perf(ext/node): convert child_process, fs, http, http2, https, inspector to lazy-loaded JS (#33967)
12 май 2026, 01:27
Не верифицирован
12 май 2026, 01:27
05e01ff
Код
Авторство
О чём код?
// Copyright 2018-2026 the Deno authors. MIT license. import { core } from "ext:core/mod.js"; const mod = core.loadExtScript("ext:deno_node/child_process.ts"); export const fork = mod.fork; export const spawn = mod.spawn; export const exec = mod.exec; export const execFile = mod.execFile; export const execFileSync = mod.execFileSync; export const execSync = mod.execSync; export const ChildProcess = mod.ChildProcess; export const spawnSync = mod.spawnSync; export default mod;