langsmith
Version:
Client library to connect to the LangSmith Observability and Evaluation Platform.
19 lines (18 loc) • 911 B
JavaScript
import validate from "./validate.js";
function parse(uuid) {
if (!validate(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,
// Parse ........-####-....-....-............
(v = parseInt(uuid.slice(9, 13), 16)) >>> 8, v & 0xff,
// Parse ........-....-####-....-............
(v = parseInt(uuid.slice(14, 18), 16)) >>> 8, v & 0xff,
// Parse ........-....-....-####-............
(v = parseInt(uuid.slice(19, 23), 16)) >>> 8, v & 0xff,
// Parse ........-....-....-....-############
// (Use "/" to avoid 32-bit truncation when bit-shifting high-order bytes)
((v = parseInt(uuid.slice(24, 36), 16)) / 0x10000000000) & 0xff, (v / 0x100000000) & 0xff, (v >>> 24) & 0xff, (v >>> 16) & 0xff, (v >>> 8) & 0xff, v & 0xff);
}
export default parse;