snapcap
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

ParameterTypeDescription
highstring | bigintUpper 64 bits as bigint or decimal-string.
lowstring | bigintLower 64 bits as bigint or decimal-string.

Returns

string

Hyphenated UUID string.

See

uuidToHighLow

On this page