You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Drift/server/node_modules/http-status/lib/nginx.js

24 lines
496 B
JavaScript

// Generated by CoffeeScript 2.5.1
// # NGINX extra status codes
// The NGINX web server software expands the 4xx error class to signal issues with the client's request.
var k, ref, status, v;
status = require('.');
// Import default status codes.
for (k in status) {
v = status[k];
if (k === 'extra') {
continue;
}
module.exports[k] = v;
}
ref = status.extra.nginx;
// Merge default status codes with NGINX status codes.
for (k in ref) {
v = ref[k];
module.exports[k] = v;
}