UNPKG

js-awe

Version:

Awesome js utils including - plan: An Asynchronous control flow with a functional taste - Chrono: record and visualize timelines in the console

7 lines (6 loc) 191 B
async function fetchImproved(...args) { const result = await fetch(...args); const body = await result.json(); return { status: result.status, body }; } export { fetchImproved };