blob: 7f97509954d8863024c36fd840178a9a01ae9fa9 (
plain)
1
2
3
4
5
6
7
8
9
10
|
new Worker("data:,setTimeout(() => Deno.exit(2), 200)", { type: "module" });
try {
await Deno.spawn("ps", {
stdout: "inherit",
stderr: "inherit",
});
} catch {
Deno.exit(0);
}
|