Skip to content

Instantly share code, notes, and snippets.

View jyotiarora2610's full-sized avatar

Jyoti Arora jyotiarora2610

View GitHub Profile
@jyotiarora2610
jyotiarora2610 / soFetch.js
Created September 8, 2021 16:35 — forked from lusan/soFetch.js
Reusable fetch function from wesbos
// https://twitter.com/wesbos/status/1063515277911052290/photo/1
async function soFetch(input, settings = {}) {
const response = await fetch(input, {
headers: {
Accept: 'application/json, text/plain, */*',
'Content-Type': 'application/json'
},
...settings
});