/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

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