statusCode alias for status

for node
master
Jonathan Ong 2013-10-23 23:44:22 -07:00
parent 6492f2ca4a
commit fbfeffa090
1 changed files with 8 additions and 0 deletions

View File

@ -110,6 +110,10 @@ module.exports = {
get status() {
return this.res.statusCode;
},
get statusCode() {
return this.res.statusCode;
},
/**
* Set response status code.
@ -130,6 +134,10 @@ module.exports = {
var noContent = 304 == this.status || 204 == this.status;
if (noContent && this.body) this.body = null;
},
set statusCode(val) {
this.status = val;
},
/**
* Get response body.