diff options
| author | Dax Raad <[email protected]> | 2025-05-30 20:47:56 -0400 |
|---|---|---|
| committer | Dax Raad <[email protected]> | 2025-05-30 20:48:36 -0400 |
| commit | f3da73553c45f17e04b1e77cb13eb0fca714d1bd (patch) | |
| tree | a24317a19e1ab2a89da50db669dc6894f15d00d1 /js/src/util/context.ts | |
| parent | 9a26b3058ffc1023e5c7e54b6d571c903d15888e (diff) | |
| download | opencode-f3da73553c45f17e04b1e77cb13eb0fca714d1bd.tar.gz opencode-f3da73553c45f17e04b1e77cb13eb0fca714d1bd.zip | |
sync
Diffstat (limited to 'js/src/util/context.ts')
| -rw-r--r-- | js/src/util/context.ts | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/js/src/util/context.ts b/js/src/util/context.ts deleted file mode 100644 index bcaf7ee3c..000000000 --- a/js/src/util/context.ts +++ /dev/null @@ -1,25 +0,0 @@ -import { AsyncLocalStorage } from "async_hooks"; - -export namespace Context { - export class NotFound extends Error { - constructor(public readonly name: string) { - super(`No context found for ${name}`); - } - } - - export function create<T>(name: string) { - const storage = new AsyncLocalStorage<T>(); - return { - use() { - const result = storage.getStore(); - if (!result) { - throw new NotFound(name); - } - return result; - }, - provide<R>(value: T, fn: () => R) { - return storage.run<R>(value, fn); - }, - }; - } -} |
