Rocky_Mountain_Vending/.pnpm-store/v10/files/c7/e71f0af90e45ec0e4925d7c8339c139b57eb3aac6ea5748ffc9169a8a599ec0a044b8bc19ba4689d450399a335fc3ebc6a4be2bd521a0eec85bb1563096b0b
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

25 lines
894 B
Text

import { addNonEnumerableProperty } from '../utils/object.js';
const SCOPE_ON_START_SPAN_FIELD = '_sentryScope';
const ISOLATION_SCOPE_ON_START_SPAN_FIELD = '_sentryIsolationScope';
/** Store the scope & isolation scope for a span, which can the be used when it is finished. */
function setCapturedScopesOnSpan(span, scope, isolationScope) {
if (span) {
addNonEnumerableProperty(span, ISOLATION_SCOPE_ON_START_SPAN_FIELD, isolationScope);
addNonEnumerableProperty(span, SCOPE_ON_START_SPAN_FIELD, scope);
}
}
/**
* Grabs the scope and isolation scope off a span that were active when the span was started.
*/
function getCapturedScopesOnSpan(span) {
return {
scope: (span )[SCOPE_ON_START_SPAN_FIELD],
isolationScope: (span )[ISOLATION_SCOPE_ON_START_SPAN_FIELD],
};
}
export { getCapturedScopesOnSpan, setCapturedScopesOnSpan };
//# sourceMappingURL=utils.js.map