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
/
esm
/
context.js
9 lines
•
293 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
import
{
AsyncLocalStorage
}
from
"node:async_hooks"
;
export
const
debugStorage =
new
AsyncLocalStorage
();
export
function
getContext
(
) {
return
debugStorage.
getStore
(); }
export
function
runWithContext
(
ctx, fn
) {
return
debugStorage.
run
(ctx, fn); }
//# sourceMappingURL=context.js.map