UNPKG

226 BJavaScriptView Raw
1'use strict';
2
3const WHITELIST = new Set([
4 'ETIMEDOUT',
5 'ECONNRESET',
6 'EADDRINUSE',
7 'ECONNREFUSED',
8 'EPIPE'
9]);
10
11module.exports = error => {
12 if (error && WHITELIST.has(error.code)) {
13 return true;
14 }
15
16 return false;
17};