vanillajs-deck/js/jsonLoader.js
2019-11-22 11:28:19 -08:00

4 lines
114 B
JavaScript

export async function getJson(path) {
const response = await fetch(path);
return await response.json();
};