chunk-QY775BFA.js 441 B

123456789101112131415
  1. // node_modules/@arcgis/core/core/uuid.js
  2. var n = "randomUUID" in crypto;
  3. function t() {
  4. if (n)
  5. return crypto.randomUUID();
  6. const t2 = crypto.getRandomValues(new Uint16Array(8));
  7. t2[3] = 4095 & t2[3] | 16384, t2[4] = 16383 & t2[4] | 32768;
  8. const r = (n2) => t2[n2].toString(16);
  9. return r(0) + r(1) + "-" + r(2) + "-" + r(3) + "-" + r(4) + "-" + r(5) + r(6) + r(7);
  10. }
  11. export {
  12. t
  13. };
  14. //# sourceMappingURL=chunk-QY775BFA.js.map