UNPKG

agentcrumbs

Version:
9 lines 299 B
const DEFAULT_URL = "http://localhost:8374/crumb"; export function sendCrumb(crumb, url = DEFAULT_URL) { fetch(url, { method: "POST", headers: { "Content-Type": "application/json" }, body: JSON.stringify(crumb), }).catch(() => { }); } //# sourceMappingURL=http.js.map