Ability to represent any body format for `Response()`
This release makes it possible to represent the body of Response() in any supported format by the Fetch API.
const fetchUsers = api.get('/users', function*(ctx, next) {
ctx.bodyType = 'text'; // calls `Response.text()` instead of default `Response.json()`
yield next();
});