GitNexus/gitnexus/test/fixtures/lang-resolution/api-e2e-test/lib/http.ts

4 lines
100 B
TypeScript

export async function httpGet(url: string) {
const res = await fetch(url);
return res.json();
}