1
2
3
4
5
6
export let reasonPhrase = () => {
return new Response("Hello world", {
status: 200,
statusText: "This can be customized!",
});
};