export function getCurrentContext()

in src/async_local_storage.ts [42:47]


export function getCurrentContext(): ExecutionContext | undefined {
  if (!asyncLocalStorage) {
    return undefined;
  }
  return asyncLocalStorage.getStore();
}