@thi.ng/grid-iterators 4.0.68 → 4.0.69
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 +10 -10
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 191 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
|
>
|
|
@@ -233,7 +233,13 @@ optional clipping:
|
|
|
233
233
|
yarn add @thi.ng/grid-iterators
|
|
234
234
|
```
|
|
235
235
|
|
|
236
|
-
|
|
236
|
+
ESM import:
|
|
237
|
+
|
|
238
|
+
```ts
|
|
239
|
+
import * as gi from "@thi.ng/grid-iterators";
|
|
240
|
+
```
|
|
241
|
+
|
|
242
|
+
Browser ESM import:
|
|
237
243
|
|
|
238
244
|
```html
|
|
239
245
|
<script type="module" src="https://cdn.skypack.dev/@thi.ng/grid-iterators"></script>
|
|
@@ -244,7 +250,7 @@ ES module import:
|
|
|
244
250
|
For Node.js REPL:
|
|
245
251
|
|
|
246
252
|
```js
|
|
247
|
-
const
|
|
253
|
+
const gi = await import("@thi.ng/grid-iterators");
|
|
248
254
|
```
|
|
249
255
|
|
|
250
256
|
Package sizes (brotli'd, pre-treeshake): ESM: 2.58 KB
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thi.ng/grid-iterators",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.69",
|
|
4
4
|
"description": "2D grid and shape iterators w/ multiple orderings",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "./index.js",
|
|
@@ -38,14 +38,14 @@
|
|
|
38
38
|
"tool:tangle": "../../node_modules/.bin/tangle src/**/*.ts"
|
|
39
39
|
},
|
|
40
40
|
"dependencies": {
|
|
41
|
-
"@thi.ng/api": "^8.
|
|
42
|
-
"@thi.ng/arrays": "^2.9.
|
|
43
|
-
"@thi.ng/binary": "^3.4.
|
|
44
|
-
"@thi.ng/bitfield": "^2.3.
|
|
45
|
-
"@thi.ng/errors": "^2.5.
|
|
46
|
-
"@thi.ng/morton": "^3.1.
|
|
47
|
-
"@thi.ng/random": "^3.7.
|
|
48
|
-
"@thi.ng/transducers": "^
|
|
41
|
+
"@thi.ng/api": "^8.10.0",
|
|
42
|
+
"@thi.ng/arrays": "^2.9.2",
|
|
43
|
+
"@thi.ng/binary": "^3.4.21",
|
|
44
|
+
"@thi.ng/bitfield": "^2.3.37",
|
|
45
|
+
"@thi.ng/errors": "^2.5.3",
|
|
46
|
+
"@thi.ng/morton": "^3.1.82",
|
|
47
|
+
"@thi.ng/random": "^3.7.2",
|
|
48
|
+
"@thi.ng/transducers": "^9.0.0"
|
|
49
49
|
},
|
|
50
50
|
"devDependencies": {
|
|
51
51
|
"@microsoft/api-extractor": "^7.43.0",
|
|
@@ -167,5 +167,5 @@
|
|
|
167
167
|
],
|
|
168
168
|
"year": 2019
|
|
169
169
|
},
|
|
170
|
-
"gitHead": "
|
|
170
|
+
"gitHead": "85ac4bd4d6d89f8e3689e2863d5bea0cecdb371c\n"
|
|
171
171
|
}
|