UNPKG

mach

Version:
17 lines (13 loc) 383 B
"use strict"; var d = require("describe-property"); var StatusCodes = require("../StatusCodes"); module.exports = function (mach) { Object.defineProperties(mach.Connection.prototype, { /** * The message that corresponds with the response status code. */ statusText: d.gs(function () { return this.status + " " + StatusCodes[this.status]; }) }); };