@thi.ng/random 4.0.0 → 4.0.1
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/README.md +6 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -31,6 +31,12 @@
|
|
|
31
31
|
|
|
32
32
|
Pseudo-random number generators w/ unified API, distributions, weighted choices, ID generation.
|
|
33
33
|
|
|
34
|
+
> [!IMPORTANT]
|
|
35
|
+
> In July 2024 this package was restructured and split-up to extract some
|
|
36
|
+
> features into smaller more focused packages:
|
|
37
|
+
>
|
|
38
|
+
> - [@thi.ng/uuid](https://thi.ng/uuid)
|
|
39
|
+
|
|
34
40
|
This package provides the `IRandom` interface and various (mostly seedable)
|
|
35
41
|
pseudo-random number generator implementations, incl. `IRandom` wrappers for
|
|
36
42
|
`Math.random()` and `window.crypto`:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thi.ng/random",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.1",
|
|
4
4
|
"description": "Pseudo-random number generators w/ unified API, distributions, weighted choices, ID generation",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "./index.js",
|
|
@@ -154,5 +154,5 @@
|
|
|
154
154
|
"ksuid"
|
|
155
155
|
]
|
|
156
156
|
},
|
|
157
|
-
"gitHead": "
|
|
157
|
+
"gitHead": "bd22b0826134b79064169371665b4d6caa9b6066\n"
|
|
158
158
|
}
|