#!/usr/bin/env -S deno run --allow-net --watch
await Deno.serve(() => {
return new Response(ReadableStream.from(content()));
}).finished;
// deno-lint-ignore require-yield
function* content() {
throw new Error("EPIC FAIL");
}
#!/usr/bin/env -S deno run --allow-net --watch
await Deno.serve(() => {
return new Response(ReadableStream.from(content()));
}).finished;
// deno-lint-ignore require-yield
function* content() {
throw new Error("EPIC FAIL");
}