UNPKG

@belgattitude/http-exception

Version:

Warning: has been moved to @httpx/exception. Please update.

9 lines (7 loc) 221 B
var isHttpErrorStatusCode = function isHttpErrorStatusCode(statusCode) { if (typeof statusCode !== 'number') { return false; } return statusCode >= 400 && statusCode < 600; }; export { isHttpErrorStatusCode };