Initial commit

This commit is contained in:
2025-03-07 19:22:02 +01:00
commit 4a98255d83
55743 changed files with 5280367 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
'use strict';
const http = require('http');
const ours = {
"default": "Default response",
"1XX": "Informational",
"103": "Early hints", // not in Node < 10
"2XX": "Successful",
"3XX": "Redirection",
"4XX": "Client Error",
"5XX": "Server Error",
"7XX": "Developer Error" // April fools RFC
};
module.exports = {
statusCodes: Object.assign({},ours,http.STATUS_CODES)
};