UNPKG

contexta

Version:

A React-inspired Context API for Node.js with async/await support. Supported in nodejs, bun, and deno via async-local-storage.

5 lines (4 loc) 127 B
import Context from './Context'; export default function createContext(defaultValue) { return new Context(defaultValue); }