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
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.