/
githubmirror
/
deno
Обзор
Документация
Войти
/
githubmirror
/
deno
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
tests/unit_node/testdata/process_really_exit.ts
10 строк
319 B
Matt Mastracci
chore: move cli/tests/ -> tests/ (#22369)
10 фев 2024, 23:22
Не верифицирован
10 фев 2024, 23:22
f5e46c9
Код
Авторство
О чём код?
import process from "node:process"; //deno-lint-ignore no-undef // @ts-ignore - Node typings don't even have this because it's // been deprecated for 4 years. But it's used in `signal-exit`, // which in turn is used in `node-tap`. process.reallyExit = function () { console.info("really exited"); }; process.exit();