apparently this works with native fetch
new Response(2).text().then(console.log) // 2
new Response({}).text().then(console.log) // [Object object]
but dose not with the polyfill i think the throw should be replaced with something that just do String(body)
apparently this works with native fetch
but dose not with the polyfill i think the throw should be replaced with something that just do
String(body)