UNPKG

@backtrace/sourcemap-tools

Version:
14 lines (13 loc) 344 B
export function bytesToUuid(bytes: Buffer) { return ( bytes.slice(0, 4).toString('hex') + '-' + bytes.slice(4, 6).toString('hex') + '-' + bytes.slice(6, 8).toString('hex') + '-' + bytes.slice(8, 10).toString('hex') + '-' + bytes.slice(10, 16).toString('hex') ); }