API ReferenceFunctions
highLowToUuid
Function: highLowToUuid()
function highLowToUuid(high: string | bigint, low: string | bigint): string;Defined in: api/_helpers.ts:107
Inverse of uuidToHighLow: assemble a UUID string from the
{high, low} pair.
Parameters
| Parameter | Type | Description |
|---|---|---|
high | string | bigint | Upper 64 bits as bigint or decimal-string. |
low | string | bigint | Lower 64 bits as bigint or decimal-string. |
Returns
string
Hyphenated UUID string.