async function handleRequest()

in hello_world/src/index.js [6:12]


async function handleRequest(request) {
  return new Response(html, {
    headers: {
      "content-type": "text/html;charset=UTF-8",
    },
  });
}