mirror of
https://github.com/sst/opencode.git
synced 2025-08-22 22:14:14 +00:00
21 lines
470 B
TypeScript
21 lines
470 B
TypeScript
import { AsyncLocalStorage } from "node:async_hooks"
|
|
|
|
export namespace Context {
|
|
export class NotFound extends Error {}
|
|
|
|
export function create<T>() {
|
|
const storage = new AsyncLocalStorage<T>()
|
|
return {
|
|
use() {
|
|
const result = storage.getStore()
|
|
if (!result) {
|
|
throw new NotFound()
|
|
}
|
|
return result
|
|
},
|
|
provide<R>(value: T, fn: () => R) {
|
|
return storage.run<R>(value, fn)
|
|
},
|
|
}
|
|
}
|
|
}
|