@thi.ng/lowdisc 0.3.61 → 0.3.63
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 +9 -3
- package/package.json +4 -3
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
[](https://mastodon.thi.ng/@toxi)
|
|
8
8
|
|
|
9
9
|
> [!NOTE]
|
|
10
|
-
> This is one of
|
|
10
|
+
> This is one of 192 standalone projects, maintained as part
|
|
11
11
|
> of the [@thi.ng/umbrella](https://github.com/thi-ng/umbrella/) monorepo
|
|
12
12
|
> and anti-framework.
|
|
13
13
|
>
|
|
@@ -79,7 +79,13 @@ Based on Kronecker with each dimension's base automatically derived from the
|
|
|
79
79
|
yarn add @thi.ng/lowdisc
|
|
80
80
|
```
|
|
81
81
|
|
|
82
|
-
|
|
82
|
+
ESM import:
|
|
83
|
+
|
|
84
|
+
```ts
|
|
85
|
+
import * as ld from "@thi.ng/lowdisc";
|
|
86
|
+
```
|
|
87
|
+
|
|
88
|
+
Browser ESM import:
|
|
83
89
|
|
|
84
90
|
```html
|
|
85
91
|
<script type="module" src="https://cdn.skypack.dev/@thi.ng/lowdisc"></script>
|
|
@@ -90,7 +96,7 @@ ES module import:
|
|
|
90
96
|
For Node.js REPL:
|
|
91
97
|
|
|
92
98
|
```js
|
|
93
|
-
const
|
|
99
|
+
const ld = await import("@thi.ng/lowdisc");
|
|
94
100
|
```
|
|
95
101
|
|
|
96
102
|
Package sizes (brotli'd, pre-treeshake): ESM: 450 bytes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thi.ng/lowdisc",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.63",
|
|
4
4
|
"description": "n-dimensional low-discrepancy sequence generators/iterators",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "./index.js",
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
"tool:tangle": "../../node_modules/.bin/tangle src/**/*.ts"
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@thi.ng/errors": "^2.5.
|
|
39
|
+
"@thi.ng/errors": "^2.5.4"
|
|
40
40
|
},
|
|
41
41
|
"devDependencies": {
|
|
42
42
|
"@microsoft/api-extractor": "^7.43.0",
|
|
@@ -87,6 +87,7 @@
|
|
|
87
87
|
}
|
|
88
88
|
},
|
|
89
89
|
"thi.ng": {
|
|
90
|
+
"alias": "ld",
|
|
90
91
|
"related": [
|
|
91
92
|
"poisson",
|
|
92
93
|
"random"
|
|
@@ -94,5 +95,5 @@
|
|
|
94
95
|
"status": "beta",
|
|
95
96
|
"year": 2020
|
|
96
97
|
},
|
|
97
|
-
"gitHead": "
|
|
98
|
+
"gitHead": "18a0c063a7b33d790e5bc2486c106f45f663ac28\n"
|
|
98
99
|
}
|