Vinícius Ernani de Carvalho 6c4544a079 Create the backend | 5 yıl önce | |
---|---|---|
.. | ||
index.js | 5 yıl önce | |
license | 5 yıl önce | |
package.json | 5 yıl önce | |
readme.md | 5 yıl önce |
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