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>
33 lines
No EOL
1.2 KiB
Text
33 lines
No EOL
1.2 KiB
Text
const SPAN_ID_BYTES = 8;
|
|
const TRACE_ID_BYTES = 16;
|
|
/**
|
|
* @deprecated Use the one defined in @opentelemetry/sdk-trace-base instead.
|
|
*/
|
|
export class RandomIdGenerator {
|
|
constructor() {
|
|
/**
|
|
* Returns a random 16-byte trace ID formatted/encoded as a 32 lowercase hex
|
|
* characters corresponding to 128 bits.
|
|
*/
|
|
this.generateTraceId = getIdGenerator(TRACE_ID_BYTES);
|
|
/**
|
|
* Returns a random 8-byte span ID formatted/encoded as a 16 lowercase hex
|
|
* characters corresponding to 64 bits.
|
|
*/
|
|
this.generateSpanId = getIdGenerator(SPAN_ID_BYTES);
|
|
}
|
|
}
|
|
const SHARED_CHAR_CODES_ARRAY = Array(32);
|
|
function getIdGenerator(bytes) {
|
|
return function generateId() {
|
|
for (let i = 0; i < bytes * 2; i++) {
|
|
SHARED_CHAR_CODES_ARRAY[i] = Math.floor(Math.random() * 16) + 48;
|
|
// valid hex characters in the range 48-57 and 97-102
|
|
if (SHARED_CHAR_CODES_ARRAY[i] >= 58) {
|
|
SHARED_CHAR_CODES_ARRAY[i] += 39;
|
|
}
|
|
}
|
|
return String.fromCharCode.apply(null, SHARED_CHAR_CODES_ARRAY.slice(0, bytes * 2));
|
|
};
|
|
}
|
|
//# sourceMappingURL=RandomIdGenerator.js.map |