can generate jsdoc; private methods marked as such
[dygraphs.git] / jsdoc-toolkit / app / test / name.js
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 }