See `fetch/api/body/cloned-any.js`: ```js const body = new Uint8Array([97]); // a const res = new Response(body); const req = new Request(url, { method, body }); body[0] = 98; // b assert_true(await res.text() === 'a'); assert_true(await req.text() === 'a'); ``` We have a problem: We're only taking a reference to `body`, and so we end up with `res.text() === 'b'` etc. Fixing this will probably require a compat flag. To do this efficiently, we might consider copy-on-write.