robert2206 8ad867f7a5 commit inicial 8 years ago
..
index.js 8ad867f7a5 commit inicial 8 years ago
license 8ad867f7a5 commit inicial 8 years ago
package.json 8ad867f7a5 commit inicial 8 years ago
readme.md 8ad867f7a5 commit inicial 8 years ago

readme.md

is-retry-allowed Build Status

Is retry allowed for Error?

Install

$ npm install --save is-retry-allowed

Usage

const isRetryAllowed = require('is-retry-allowed');

isRetryAllowed({code: 'ETIMEDOUT'});
//=> true

isRetryAllowed({code: 'ENOTFOUND'});
//=> false

isRetryAllowed({});
//=> true

API

isRetryAllowed(error)

error

Type: object

Object with code property, which will be used to determine retry.

License

MIT © Vsevolod Strukchinsky