mirror of
https://github.com/Redocly/redoc.git
synced 2024-11-10 19:06:34 +03:00
statusCodeType fix
This commit is contained in:
parent
8d91427206
commit
baa7f27b9b
|
@ -1,12 +1,15 @@
|
|||
'use strict';
|
||||
|
||||
export function statusCodeType(statusCode) {
|
||||
if (statusCode < 100 || statusCode > 599) {
|
||||
throw 'invalid HTTP code';
|
||||
}
|
||||
let res = 'success';
|
||||
if (statusCode >= 300 && statusCode < 400) {
|
||||
res = 'redirect';
|
||||
} else if (statusCode >= 400) {
|
||||
res = 'error';
|
||||
} else if (statusCode < 100) {
|
||||
} else if (statusCode < 200) {
|
||||
res = 'info';
|
||||
}
|
||||
return res;
|
||||
|
|
Loading…
Reference in New Issue
Block a user