mirror of
https://github.com/JeremyLikness/vanillajs-deck
synced 2024-11-14 09:34:55 +00:00
4 lines
114 B
JavaScript
4 lines
114 B
JavaScript
export async function getJson(path) {
|
|
const response = await fetch(path);
|
|
return await response.json();
|
|
}; |