redoc/lib/utils/helpers.js

17 lines
357 B
JavaScript
Raw Normal View History

2015-11-23 23:27:55 +03:00
'use strict';
export function statusCodeType(statusCode) {
2015-12-12 19:30:13 +03:00
if (statusCode < 100 || statusCode > 599) {
throw 'invalid HTTP code';
}
2015-11-23 23:27:55 +03:00
let res = 'success';
if (statusCode >= 300 && statusCode < 400) {
res = 'redirect';
2015-11-23 23:56:44 +03:00
} else if (statusCode >= 400) {
2015-11-23 23:27:55 +03:00
res = 'error';
2015-12-12 19:30:13 +03:00
} else if (statusCode < 200) {
2015-11-23 23:27:55 +03:00
res = 'info';
}
return res;
}