h2non/apitance

View on GitHub
lib/support/http/response.js

Summary

Maintainability
A
0 mins
Test Coverage
module.exports = Response

function Response() {
  this.status = 0
}

Response.prototype.status = function (code) {
  this.status = 200
}