reorder debug

This commit is contained in:
Daniel Bulant 2023-08-22 12:59:00 +02:00
parent 7912c4d0b3
commit d191ade47c

View file

@ -12,11 +12,11 @@ export async function GET({ url }) {
return json({
headers: Object.fromEntries(ret.headers.entries()),
body: data,
url: ret.url,
original: url.searchParams.get('url'),
code: ret.status,
text: ret.statusText,
type: ret.type
type: ret.type,
body: data,
});
}