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/cloudflare.js

24 lines
512 B
JavaScript

// Generated by CoffeeScript 2.5.1
// # Cloudfare extra status codes
// Cloudflare's reverse proxy service expands the 5xx error class to signal issues with the origin server.
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.cloudflare;
// Merge default status codes with Cloudflare status codes.
for (k in ref) {
v = ref[k];
module.exports[k] = v;
}