export async function fetchJSON()

in src/lib/helpers/fetchJSON.js [1:5]


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