UNPKG

agentcrumbs

Version:
9 lines 293 B
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