abortable-fetch
v0.0.2
Published
Make the fetch() API abortable
Downloads
2
Readme
Abortable Fetch
Make possible to abort a Fetch request
Usage
import fetch from 'abortable-fetch'
const req = fetch('https://ovh.com')
.then(res => console.log(res))
req.abort()