Request on current main does not expose the Body mixin.
const r = new Request("http://example.com", { method: "POST", body: "x" });
console.log(typeof r.text, typeof r.json, typeof r.bytes, typeof r.bodyUsed);
Current Boa:
undefined undefined undefined undefined
Expected:
function function function boolean
The Fetch spec says Request includes Body, so this should expose the body-reading methods and bodyUsed.
Requeston currentmaindoes not expose theBodymixin.Current Boa:
undefined undefined undefined undefinedExpected:
function function function booleanThe Fetch spec says
RequestincludesBody, so this should expose the body-reading methods andbodyUsed.