popsicle
Version:
Simple HTTP requests for node and the browser
32 lines • 1.05 kB
JavaScript
;
var __extends = (this && this.__extends) || function (d, b) {
for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p];
function __() { this.constructor = d; }
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
};
var base_1 = require("./base");
var Response = (function (_super) {
__extends(Response, _super);
function Response(options) {
var _this = _super.call(this, options) || this;
_this.body = options.body;
_this.status = options.status;
_this.statusText = options.statusText;
return _this;
}
Response.prototype.statusType = function () {
return ~~(this.status / 100);
};
Response.prototype.toJSON = function () {
return {
url: this.url,
headers: this.headers,
body: this.body,
status: this.status,
statusText: this.statusText
};
};
return Response;
}(base_1.Base));
exports.Response = Response;
//# sourceMappingURL=response.js.map