@itwin/core-i18n 5.3.0-dev.2 → 5.3.0-dev.21
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +21 -1
- package/lib/cjs/test/webpack/bundled-tests.instrumented.js +132 -137
- package/lib/cjs/test/webpack/bundled-tests.instrumented.js.map +1 -1
- package/lib/cjs/test/webpack/bundled-tests.js +1 -6
- package/lib/cjs/test/webpack/bundled-tests.js.map +1 -1
- package/lib/cjs/test/webpack/vendors-common_temp_node_modules_pnpm_cross-fetch_4_0_0_node_modules_cross-fetch_dist_browser-24291b.bundled-tests.instrumented.js.map +1 -1
- package/lib/cjs/test/webpack/vendors-common_temp_node_modules_pnpm_cross-fetch_4_0_0_node_modules_cross-fetch_dist_browser-24291b.bundled-tests.js.map +1 -1
- package/package.json +6 -6
|
@@ -17973,12 +17973,7 @@ var Guid;
|
|
|
17973
17973
|
Guid.isV4Guid = isV4Guid;
|
|
17974
17974
|
/** Create a new V4 Guid value */
|
|
17975
17975
|
function createValue() {
|
|
17976
|
-
|
|
17977
|
-
return "xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx".replace(/[xy]/g, (c) => {
|
|
17978
|
-
const r = Math.random() * 16 | 0;
|
|
17979
|
-
const v = c === "x" ? r : (r & 0x3 | 0x8);
|
|
17980
|
-
return v.toString(16);
|
|
17981
|
-
});
|
|
17976
|
+
return crypto.randomUUID();
|
|
17982
17977
|
}
|
|
17983
17978
|
Guid.createValue = createValue;
|
|
17984
17979
|
/**
|