add .body to Response#inspect()
This commit is contained in:
parent
35a0c1d2bb
commit
d23ad1a024
1 changed files with 3 additions and 1 deletions
|
@ -413,7 +413,9 @@ module.exports = {
|
|||
*/
|
||||
|
||||
inspect: function(){
|
||||
return this.toJSON();
|
||||
var o = this.toJSON();
|
||||
o.body = this.body;
|
||||
return o;
|
||||
},
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue