add .body to Response#inspect()

This commit is contained in:
TJ Holowaychuk 2013-11-14 11:34:55 -08:00
parent 35a0c1d2bb
commit d23ad1a024

View file

@ -413,7 +413,9 @@ module.exports = {
*/
inspect: function(){
return this.toJSON();
var o = this.toJSON();
o.body = this.body;
return o;
},
/**