src/lib/helpers/fetchJSON.js (
5
lines of code) (
raw
):
export async function fetchJSON(path) { const response = await fetch(path); const JSON = await response.json(); return JSON; }