source: imaps-frontend/node_modules/uuid/dist/esm-browser/v1ToV6.js@ 79a0317

main
Last change on this file since 79a0317 was 79a0317, checked in by stefan toskovski <stefantoska84@…>, 3 days ago

F4 Finalna Verzija

  • Property mode set to 100644
File size: 842 bytes
RevLine 
[79a0317]1import parse from './parse.js';
2import { unsafeStringify } from './stringify.js';
3export default function v1ToV6(uuid) {
4 const v1Bytes = typeof uuid === 'string' ? parse(uuid) : uuid;
5 const v6Bytes = _v1ToV6(v1Bytes);
6 return typeof uuid === 'string' ? unsafeStringify(v6Bytes) : v6Bytes;
7}
8function _v1ToV6(v1Bytes) {
9 return Uint8Array.of(((v1Bytes[6] & 0x0f) << 4) | ((v1Bytes[7] >> 4) & 0x0f), ((v1Bytes[7] & 0x0f) << 4) | ((v1Bytes[4] & 0xf0) >> 4), ((v1Bytes[4] & 0x0f) << 4) | ((v1Bytes[5] & 0xf0) >> 4), ((v1Bytes[5] & 0x0f) << 4) | ((v1Bytes[0] & 0xf0) >> 4), ((v1Bytes[0] & 0x0f) << 4) | ((v1Bytes[1] & 0xf0) >> 4), ((v1Bytes[1] & 0x0f) << 4) | ((v1Bytes[2] & 0xf0) >> 4), 0x60 | (v1Bytes[2] & 0x0f), v1Bytes[3], v1Bytes[8], v1Bytes[9], v1Bytes[10], v1Bytes[11], v1Bytes[12], v1Bytes[13], v1Bytes[14], v1Bytes[15]);
10}
Note: See TracBrowser for help on using the repository browser.