Files
luke-else.co.uk/src/lib/data.ts
T
2025-09-25 22:03:37 +01:00

5 lines
146 B
TypeScript

export async function getJson(path: string) {
let response = await fetch(path);
let users = await response.json();
return users;
}