标签: typescript deno
如何通过状态码在Deno中退出?
In Node.js you could use process.exit(),它的Deno对手是什么?
process.exit()
答案 0 :(得分:2)
从Deno版本0.3.4开始:
0.3.4
Deno.exit(1); // the exit code is optional and defaults to 0
签出https://deno.land/typedoc/来了解您可以通过Deno全局访问的所有内容。
Deno