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>
18 lines
331 B
Text
18 lines
331 B
Text
import { uuid4 } from './misc.js';
|
|
|
|
/**
|
|
* Generate a random, valid trace ID.
|
|
*/
|
|
function generateTraceId() {
|
|
return uuid4();
|
|
}
|
|
|
|
/**
|
|
* Generate a random, valid span ID.
|
|
*/
|
|
function generateSpanId() {
|
|
return uuid4().substring(16);
|
|
}
|
|
|
|
export { generateSpanId, generateTraceId };
|
|
//# sourceMappingURL=propagationContext.js.map
|