You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
720 B
11 lines
720 B
"use strict"; |
|
Object.defineProperty(exports, "__esModule", { value: true }); |
|
const validate_js_1 = require("./validate.js"); |
|
function parse(uuid) { |
|
if (!(0, validate_js_1.default)(uuid)) { |
|
throw TypeError('Invalid UUID'); |
|
} |
|
let v; |
|
return Uint8Array.of((v = parseInt(uuid.slice(0, 8), 16)) >>> 24, (v >>> 16) & 0xff, (v >>> 8) & 0xff, v & 0xff, (v = parseInt(uuid.slice(9, 13), 16)) >>> 8, v & 0xff, (v = parseInt(uuid.slice(14, 18), 16)) >>> 8, v & 0xff, (v = parseInt(uuid.slice(19, 23), 16)) >>> 8, v & 0xff, ((v = parseInt(uuid.slice(24, 36), 16)) / 0x10000000000) & 0xff, (v / 0x100000000) & 0xff, (v >>> 24) & 0xff, (v >>> 16) & 0xff, (v >>> 8) & 0xff, v & 0xff); |
|
} |
|
exports.default = parse;
|
|
|