mirror of
https://github.com/denoland/deno.git
synced 2024-12-11 10:07:54 -05:00
7 lines
177 B
TypeScript
7 lines
177 B
TypeScript
|
const child = new Deno.Command("deno", {
|
||
|
args: ["eval", "await new Promise(r => setTimeout(r, 2000))"],
|
||
|
stdout: "null",
|
||
|
stderr: "null",
|
||
|
}).spawn();
|
||
|
child.kill("SIGTERM");
|