An open API service indexing awesome lists of open source software.

https://github.com/ambar/abort-polyfill


https://github.com/ambar/abort-polyfill

abort-polyfill abortcontroller abortsignal fetch

Last synced: about 1 year ago
JSON representation

Awesome Lists containing this project

README

          

# abort-polyfill

- Polyfill AbortController and AbortSignal
- Polyfill signal options to legacy fetch

[![abort-polyfill](https://badgen.net/bundlephobia/minzip/abort-polyfill)](https://bundlephobia.com/result?p=abort-polyfill)

## Install

```
npm install abort-polyfill
```

## Usage

Any browsers (IE 10+):

```js
import 'cross-fetch/polyfill'
import 'abort-polyfill'
```

Node < 15:

```js
import 'cross-fetch/polyfill'
import 'event-target-polyfill'
import 'abort-polyfill'
```

Node >= 15:

```js
import 'cross-fetch/polyfill'
// no need to import polyfill
```