repo/static/base.js

4 lines
106 B
JavaScript

async function fetchJSON(url) {
const response = await fetch(url);
return await response.json();
}