0.0.2 • Published 5 years ago
abortable-fetch v0.0.2
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()
Make possible to abort a Fetch request
import fetch from 'abortable-fetch'
const req = fetch('https://ovh.com')
.then(res => console.log(res))
req.abort()