Vinícius Ernani de Carvalho 6c4544a079 Create the backend | преди 5 години | |
---|---|---|
.. | ||
index.js | преди 5 години | |
license | преди 5 години | |
package.json | преди 5 години | |
readme.md | преди 5 години |
Is retry allowed for Error?
$ npm install --save is-retry-allowed
const isRetryAllowed = require('is-retry-allowed');
isRetryAllowed({code: 'ETIMEDOUT'});
//=> true
isRetryAllowed({code: 'ENOTFOUND'});
//=> false
isRetryAllowed({});
//=> true
Type: object
Object with code
property, which will be used to determine retry.
MIT © Vsevolod Strukchinsky