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