mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-24 17:32:15 +00:00
32 lines
399 B
JavaScript
32 lines
399 B
JavaScript
'use strict';
|
|
|
|
var WHITELIST = [
|
|
'ETIMEDOUT',
|
|
'ECONNRESET',
|
|
'EADDRINUSE',
|
|
'ESOCKETTIMEDOUT',
|
|
'ECONNREFUSED',
|
|
'EPIPE'
|
|
];
|
|
|
|
var BLACKLIST = [
|
|
'ENOTFOUND',
|
|
'ENETUNREACH'
|
|
];
|
|
|
|
module.exports = function (err) {
|
|
if (!err || !err.code) {
|
|
return true;
|
|
}
|
|
|
|
if (WHITELIST.indexOf(err.code) !== -1) {
|
|
return true;
|
|
}
|
|
|
|
if (BLACKLIST.indexOf(err.code) !== -1) {
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
};
|