...response.text().then(function (text) { // do something with the text response })
fetch().then( res => res.text() ).then(function (text) { // do something with the text response }).then(function () { // do something else });