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>
15 lines
493 B
Text
15 lines
493 B
Text
import { getGlobalSingleton } from './carrier.js';
|
|
import { Scope } from './scope.js';
|
|
|
|
/** Get the default current scope. */
|
|
function getDefaultCurrentScope() {
|
|
return getGlobalSingleton('defaultCurrentScope', () => new Scope());
|
|
}
|
|
|
|
/** Get the default isolation scope. */
|
|
function getDefaultIsolationScope() {
|
|
return getGlobalSingleton('defaultIsolationScope', () => new Scope());
|
|
}
|
|
|
|
export { getDefaultCurrentScope, getDefaultIsolationScope };
|
|
//# sourceMappingURL=defaultScopes.js.map
|