mirror of
https://github.com/JeremyLikness/vanillajs-deck
synced 2024-11-14 17:44:56 +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();
|
||
|
};
|