mirror of
https://github.com/denoland/deno.git
synced 2025-02-09 15:42:18 -05:00
6 lines
177 B
TypeScript
6 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");
|