@thi.ng/uuid 1.1.9 → 1.1.10
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 +1 -1
- package/index.d.ts +1 -1
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
package/index.d.ts
CHANGED
|
@@ -13,7 +13,7 @@ import type { IRandom } from "@thi.ng/random";
|
|
|
13
13
|
* @param buf -
|
|
14
14
|
* @param rnd -
|
|
15
15
|
*/
|
|
16
|
-
export declare const uuidv4Bytes: (buf?: Uint8Array, rnd?: IRandom) => Uint8Array
|
|
16
|
+
export declare const uuidv4Bytes: (buf?: Uint8Array, rnd?: IRandom) => Uint8Array<ArrayBufferLike>;
|
|
17
17
|
/**
|
|
18
18
|
* Returns a UUID string, either from given byte array, or if omitted, using a
|
|
19
19
|
* new UUID v4 produced by {@link uuidv4Bytes}.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thi.ng/uuid",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.10",
|
|
4
4
|
"description": "Fast binary & string-based UUID v4 generation",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "./index.js",
|
|
@@ -36,14 +36,14 @@
|
|
|
36
36
|
"tool:tangle": "../../node_modules/.bin/tangle src/**/*.ts"
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@thi.ng/hex": "^2.3.
|
|
40
|
-
"@thi.ng/random": "^4.1.
|
|
39
|
+
"@thi.ng/hex": "^2.3.57",
|
|
40
|
+
"@thi.ng/random": "^4.1.4"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
|
-
"@microsoft/api-extractor": "^7.
|
|
43
|
+
"@microsoft/api-extractor": "^7.48.0",
|
|
44
44
|
"esbuild": "^0.24.0",
|
|
45
|
-
"typedoc": "^0.26.
|
|
46
|
-
"typescript": "^5.
|
|
45
|
+
"typedoc": "^0.26.11",
|
|
46
|
+
"typescript": "^5.7.2"
|
|
47
47
|
},
|
|
48
48
|
"keywords": [
|
|
49
49
|
"binary",
|
|
@@ -74,5 +74,5 @@
|
|
|
74
74
|
"thi.ng": {
|
|
75
75
|
"year": 2020
|
|
76
76
|
},
|
|
77
|
-
"gitHead": "
|
|
77
|
+
"gitHead": "85e2f0935b58bde5d165fbe754fafec5da0b731e\n"
|
|
78
78
|
}
|