Commit | Line | Data |
---|---|---|
629a09ae DV |
1 | /** |
2 | @name Response | |
3 | @class | |
4 | */ | |
5 | ||
6 | Response.prototype = { | |
7 | /** | |
8 | @name Response#text | |
9 | @function | |
10 | @description | |
11 | Gets the body of the response as plain text | |
12 | @returns {String} | |
13 | Response as text | |
14 | */ | |
15 | ||
16 | text: function() { | |
17 | return this.nativeResponse.responseText; | |
18 | } | |
19 | } |