/tags/jsdoc_toolkit-2.2.1/jsdoc-toolkit/app/test/name.js
http://jsdoc-toolkit.googlecode.com/ · 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;
- }
- }