jstd-web/node_modules/@uppy/utils/lib/isNetworkError.js

11 lines
193 B
JavaScript
Raw Normal View History

2025-11-25 15:23:22 +08:00
"use strict";
function isNetworkError(xhr) {
if (!xhr) {
return false;
}
return xhr.readyState !== 0 && xhr.readyState !== 4 || xhr.status === 0;
}
module.exports = isNetworkError;