UNPKG
agentcrumbs
Version:
latest (0.5.0)
0.5.0
0.4.0
0.3.3
0.3.1
0.3.0
0.2.0
Debug mode for any agent.
agentcrumbs.dev
triggerdotdev/agentcrumbs
agentcrumbs
/
dist
/
browser
/
transport
/
http.js
9 lines
•
299 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
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