mirror of
https://github.com/abhigyanpatwari/GitNexus.git
synced 2026-09-11 22:53:04 +00:00
4 lines
100 B
TypeScript
4 lines
100 B
TypeScript
export async function httpGet(url: string) {
|
|
const res = await fetch(url);
|
|
return res.json();
|
|
}
|