UNPKG

408 BJavaScriptView Raw
1'use strict';
2
3const http = require('http');
4
5const ours = {
6 "default": "Default response",
7 "1XX": "Informational",
8 "103": "Early hints", // not in Node < 10
9 "2XX": "Successful",
10 "3XX": "Redirection",
11 "4XX": "Client Error",
12 "5XX": "Server Error",
13 "7XX": "Developer Error" // April fools RFC
14};
15
16module.exports = {
17 statusCodes: Object.assign({},ours,http.STATUS_CODES)
18};
19