package.build.esm.propagationContext.js Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of utils Show documentation
Show all versions of utils Show documentation
Utilities for all Sentry JavaScript SDKs
import { uuid4 } from './misc.js';
/**
* Returns a new minimal propagation context
*/
function generatePropagationContext() {
return {
traceId: uuid4(),
spanId: uuid4().substring(16),
};
}
export { generatePropagationContext };
//# sourceMappingURL=propagationContext.js.map