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

24 lines
519 B
JavaScript

// Generated by CoffeeScript 2.5.1
// # IIS extra status codes
// Microsoft's Internet Information Services (IIS) web server expands the 4xx error class to signal errors 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.iis;
// Merge default status codes with IIS status codes.
for (k in ref) {
v = ref[k];
module.exports[k] = v;
}