/tags/jsdoc_toolkit-2.0.1/jsdoc-toolkit/app/test/name.js
JavaScript | 19 lines | 5 code | 2 blank | 12 comment | 0 complexity | b491ee49a307ad75d6a83bb6a095d8cb MD5 | raw file
- /**
- @name Response
- @class
- */
- Response.prototype = {
- /**
- @name Response#text
- @function
- @description
- Gets the body of the response as plain text
- @returns {String}
- Response as text
- */
- text: function() {
- return this.nativeResponse.responseText;
- }
- }