fixed untracked files

This commit is contained in:
Luca Schwan
2020-03-21 03:48:59 +01:00
parent 7462ec7ce2
commit 5a63d36fa4
1066 changed files with 0 additions and 138320 deletions

View File

@ -1,42 +0,0 @@
# is-retry-allowed [![Build Status](https://travis-ci.org/floatdrop/is-retry-allowed.svg?branch=master)](https://travis-ci.org/floatdrop/is-retry-allowed)
Is retry allowed for Error?
## Install
```
$ npm install --save is-retry-allowed
```
## Usage
```js
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](http://github.com/floatdrop)