hyperFetch is a fetch function with exponential backoff
import { fetch } from '@hyper63/fetch'
async function main() {
const result = await fetch('https://example.com')
if (result.ok) {
const body = await result.json()
console.log(body)
}
}