MCPcopy Create free account
hub / github.com/algorithmicsuperintelligence/openevolve / fetchJSON

Function fetchJSON

scripts/static/js/manual.js:40–44  ·  view source on GitHub ↗
(url)

Source from the content-addressed store, hash-verified

38
39/* ---------------- Helpers ---------------- */
40async function fetchJSON(url) {
41 const r = await fetch(url, { cache: "no-store" });
42 if (!r.ok) throw new Error(await r.text());
43 return r.json();
44}
45
46function taskCardHtml(t) {
47 const short = t.id.slice(0, 8);

Callers 2

loadTasksFunction · 0.85
openTaskFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected