Hello, is there a proper way to handle the JSON body of a Bun Request ?
I could not find anything more wise and I am not really satisfied about it, Try / Catch seem like a "Mehh idc" kind of method
let reqBody: JSON | null;
let reqRawBody: string | null;
try {
reqRawBody = await req.text();
reqBody = JSON.parse(reqRawBody);
} catch {};