Repository URL to install this package:
|
Version:
3.12.2 ▾
|
function isNetworkError(xhr) {
if (!xhr) {
return false;
}
return xhr.readyState !== 0 && xhr.readyState !== 4 || xhr.status === 0;
}
export default isNetworkError;