Files
klz-cables.com/.pnpm-store/v10/files/6e/95916564a4ef18f47d72791043ab763a0ffcd6fb68379d5c5abeeba8d08b35f45f4f95f5f533c30c9361c3c3e2114b15c53436adcd20414ad71d93e37b3c6c
Marc Mintel 5397309103
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
fix(products): fix breadcrumbs and product filtering (backport from main)
2026-02-24 16:04:21 +01:00

19 lines
331 B
Plaintext

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