UNPKG

@belgattitude/http-exception

Version:

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

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