Skip to content

Instantly share code, notes, and snippets.

@kt3k
Created May 11, 2021 02:39
Show Gist options
  • Save kt3k/43e25efffc6e1c360fc64274ea0381eb to your computer and use it in GitHub Desktop.
Save kt3k/43e25efffc6e1c360fc64274ea0381eb to your computer and use it in GitHub Desktop.
import { parse } from "https://raw.githubusercontent.com/kt3k/deno_std/fix/yaml-compat-deploy/encoding/yaml.ts";
addEventListener("fetch", (e) => {
e.respondWith(new Response(JSON.stringify(parse(`
foo: bar
baz:
- qux
- quux
`))));
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment