Rocky_Mountain_Vending/.pnpm-store/v10/files/3b/9fd753e76a5309f5a4d818aafc3b63cba0fa420728a40497333eec688c1aff994d7f6e387ee3934ffeaed113c9d151a00cc4c81bdd8f2615615960e2c9763f
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
Next.js website for Rocky Mountain Vending company featuring:
- Product catalog with Stripe integration
- Service areas and parts pages
- Admin dashboard with Clerk authentication
- SEO optimized pages with JSON-LD structured data

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-12 16:22:15 -07:00

35 lines
823 B
Text

class _AsyncLocalStorage {
__unenv__ = true;
_currentStore;
_enterStore;
_enabled = true;
getStore() {
return this._currentStore ?? this._enterStore;
}
disable() {
this._enabled = false;
}
enable() {
this._enabled = true;
}
enterWith(store) {
this._enterStore = store;
}
run(store, callback, ...args) {
this._currentStore = store;
const res = callback(...args);
this._currentStore = undefined;
return res;
}
exit(callback, ...args) {
const _previousStore = this._currentStore;
this._currentStore = undefined;
const res = callback(...args);
this._currentStore = _previousStore;
return res;
}
static snapshot() {
throw new Error("[unenv] `AsyncLocalStorage.snapshot` is not implemented!");
}
}
export const AsyncLocalStorage = globalThis.AsyncLocalStorage || _AsyncLocalStorage;